question stringlengths 33 1.59k | target stringlengths 33 1.58k |
|---|---|
public ErrorMatcher ( int errorCode , CmpOp operator ) { super ( operator ) ; _value = errorCode ; } | public ErrorMatcher ( int errorCode , CmpOp operator1 ) : base ( operator1 ) { ; _value = errorCode ; } |
public static Console getConsole ( ) { return console ; } | public static java . io . Console getConsole ( ) { return console ; } |
public UpdateTrialComponentResult updateTrialComponent ( UpdateTrialComponentRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateTrialComponent ( request ) ; } | public virtual UpdateTrialComponentResponse UpdateTrialComponent ( UpdateTrialComponentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateTrialComponentRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateTrialComponentResponseUnmarshaller . Instance ; return Invoke < UpdateTrialComponentResponse > ( request , options ) ; } |
public AddCommand setWorkingTreeIterator ( WorkingTreeIterator f ) { workingTreeIterator = f ; return this ; } | public virtual NGit . Api . AddCommand SetWorkingTreeIterator ( WorkingTreeIterator f ) { workingTreeIterator = f ; return this ; } |
public RefWriter ( Map < String , Ref > refs ) { if ( refs instanceof RefMap ) this . refs = refs . values ( ) ; elsethis . refs = RefComparator . sort ( refs . values ( ) ) ; } | public RefWriter ( IDictionary < string , Ref > refs ) { if ( refs is RefMap ) { this . refs = refs . Values ; } else { this . refs = RefComparator . Sort ( refs . Values ) ; } } |
public LazyAreaEval ( int firstRowIndex , int firstColumnIndex , int lastRowIndex , int lastColumnIndex , SheetRangeEvaluator evaluator ) { super ( evaluator , firstRowIndex , firstColumnIndex , lastRowIndex , lastColumnIndex ) ; _evaluator = evaluator ; } | public LazyAreaEval ( int firstRowIndex , int firstColumnIndex , int lastRowIndex , int lastColumnIndex , SheetRangeEvaluator evaluator ) : base ( evaluator , firstRowIndex , firstColumnIndex , lastRowIndex , lastColumnIndex ) { _evaluator = evaluator ; } |
public BatchSuspendUserResult batchSuspendUser ( BatchSuspendUserRequest request ) { request = beforeClientExecution ( request ) ; return executeBatchSuspendUser ( request ) ; } | public virtual BatchSuspendUserResponse BatchSuspendUser ( BatchSuspendUserRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = BatchSuspendUserRequestMarshaller . Instance ; options . ResponseUnmarshaller = BatchSuspendUserResponseUnmarshaller . Instance ; return Invoke < BatchSuspendUserResponse > ( request , options ) ; } |
public CreateVpnGatewayRequest ( GatewayType type ) { setType ( type . toString ( ) ) ; } | public CreateVpnGatewayRequest ( GatewayType type ) { _type = type ; } |
public BundleInstanceResult bundleInstance ( BundleInstanceRequest request ) { request = beforeClientExecution ( request ) ; return executeBundleInstance ( request ) ; } | public virtual BundleInstanceResponse BundleInstance ( BundleInstanceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = BundleInstanceRequestMarshaller . Instance ; options . ResponseUnmarshaller = BundleInstanceResponseUnmarshaller . Instance ; return Invoke < BundleInstanceResponse > ( request , options ) ; } |
public ListDeploymentsResult listDeployments ( ListDeploymentsRequest request ) { request = beforeClientExecution ( request ) ; return executeListDeployments ( request ) ; } | public virtual ListDeploymentsResponse ListDeployments ( ListDeploymentsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListDeploymentsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListDeploymentsResponseUnmarshaller . Instance ; return Invoke < ListDeploymentsResponse > ( request , options ) ; } |
public String toString ( ) { return "(FOLLOW(" + path . toString ( ) + ")" + " AND " + ANY_DIFF . toString ( ) + ")" ; } | public override string ToString ( ) { return "(FOLLOW(" + path . ToString ( ) + ")" + " AND " + ANY_DIFF . ToString ( ) + ")" ; } |
public DetectFacesResult detectFaces ( DetectFacesRequest request ) { request = beforeClientExecution ( request ) ; return executeDetectFaces ( request ) ; } | public virtual DetectFacesResponse DetectFaces ( DetectFacesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DetectFacesRequestMarshaller . Instance ; options . ResponseUnmarshaller = DetectFacesResponseUnmarshaller . Instance ; return Invoke < DetectFacesResponse > ( request , options ) ; } |
public GetRegionsResult getRegions ( GetRegionsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetRegions ( request ) ; } | public virtual GetRegionsResponse GetRegions ( GetRegionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetRegionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetRegionsResponseUnmarshaller . Instance ; return Invoke < GetRegionsResponse > ( request , options ) ; } |
public WikipediaTokenizerFactory ( Map < String , String > args ) { super ( args ) ; tokenOutput = getInt ( args , TOKEN_OUTPUT , WikipediaTokenizer . TOKENS_ONLY ) ; untokenizedTypes = getSet ( args , UNTOKENIZED_TYPES ) ; if ( untokenizedTypes == null ) { untokenizedTypes = Collections . emptySet ( ) ; } if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } } | public WikipediaTokenizerFactory ( IDictionary < string , string > args ) : base ( args ) { if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } } |
public int getSheetIndex ( String name ) { int retval = - 1 ; final int size = boundsheets . size ( ) ; for ( int k = 0 ; k < size ; k ++ ) { String sheet = getSheetName ( k ) ; if ( sheet . equalsIgnoreCase ( name ) ) { retval = k ; break ; } } return retval ; } | public int GetSheetIndex ( String name ) { int retval = - 1 ; for ( int k = 0 ; k < boundsheets . Count ; k ++ ) { String sheet = GetSheetName ( k ) ; if ( sheet . Equals ( name , StringComparison . OrdinalIgnoreCase ) ) { retval = k ; break ; } } return retval ; } |
public PagedBytesDataInput getDataInput ( ) { if ( ! frozen ) { throw new IllegalStateException ( "must call freeze() before getDataInput" ) ; } return new PagedBytesDataInput ( ) ; } | public PagedBytesDataInput GetDataInput ( ) { if ( ! frozen ) { throw new InvalidOperationException ( "must call Freeze() before GetDataInput()" ) ; } return new PagedBytesDataInput ( this ) ; } |
public AddTagsToResourceResult addTagsToResource ( AddTagsToResourceRequest request ) { request = beforeClientExecution ( request ) ; return executeAddTagsToResource ( request ) ; } | public virtual AddTagsToResourceResponse AddTagsToResource ( AddTagsToResourceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AddTagsToResourceRequestMarshaller . Instance ; options . ResponseUnmarshaller = AddTagsToResourceResponseUnmarshaller . Instance ; return Invoke < AddTagsToResourceResponse > ( request , options ) ; } |
public static int oversize ( int minTargetSize , int bytesPerElement ) { if ( minTargetSize < 0 ) { throw new IllegalArgumentException ( "invalid array size " + minTargetSize ) ; } if ( minTargetSize == 0 ) { return 0 ; } if ( minTargetSize > MAX_ARRAY_LENGTH ) { throw new IllegalArgumentException ( "requested array size " + minTargetSize + " exceeds maximum array in java (" + MAX_ARRAY_LENGTH + ")" ) ; } int extra = minTargetSize > > 3 ; if ( extra < 3 ) { extra = 3 ; } int newSize = minTargetSize + extra ; if ( newSize + 7 < 0 || newSize + 7 > MAX_ARRAY_LENGTH ) { return MAX_ARRAY_LENGTH ; } if ( Constants . JRE_IS_64BIT ) { switch ( bytesPerElement ) { case 4 : return ( newSize + 1 ) & 0x7ffffffe ; case 2 : return ( newSize + 3 ) & 0x7ffffffc ; case 1 : return ( newSize + 7 ) & 0x7ffffff8 ; case 8 : default : return newSize ; } } else { switch ( bytesPerElement ) { case 2 : return ( newSize + 1 ) & 0x7ffffffe ; case 1 : return ( newSize + 3 ) & 0x7ffffffc ; case 4 : case 8 : default : return newSize ; } } } | public static int Oversize ( int minTargetSize , int bytesPerElement ) { if ( minTargetSize < 0 ) { throw new System . ArgumentException ( "invalid array size " + minTargetSize ) ; } if ( minTargetSize == 0 ) { return 0 ; } int extra = minTargetSize > > 3 ; if ( extra < 3 ) { extra = 3 ; } int newSize = minTargetSize + extra ; if ( newSize + 7 < 0 ) { return int . MaxValue ; } if ( Constants . RUNTIME_IS_64BIT ) { switch ( bytesPerElement ) { case 4 : return ( newSize + 1 ) & 0x7ffffffe ; case 2 : return ( newSize + 3 ) & 0x7ffffffc ; case 1 : return ( newSize + 7 ) & 0x7ffffff8 ; case 8 : default : return newSize ; } } else { switch ( bytesPerElement ) { case 2 : return ( newSize + 1 ) & 0x7ffffffe ; case 1 : return ( newSize + 3 ) & 0x7ffffffc ; case 4 : case 8 : default : return newSize ; } } } |
public IntervalSet complement ( IntSet vocabulary ) { if ( vocabulary == null || vocabulary . isNil ( ) ) { return null ; } IntervalSet vocabularyIS ; if ( vocabulary instanceof IntervalSet ) { vocabularyIS = ( IntervalSet ) vocabulary ; } else { vocabularyIS = new IntervalSet ( ) ; vocabularyIS . addAll ( vocabulary ) ; } return vocabularyIS . subtract ( this ) ; } | public virtual Antlr4 . Runtime . Misc . IntervalSet Complement ( IIntSet vocabulary ) { if ( vocabulary == null || vocabulary . IsNil ) { return null ; } Antlr4 . Runtime . Misc . IntervalSet vocabularyIS ; if ( vocabulary is Antlr4 . Runtime . Misc . IntervalSet ) { vocabularyIS = ( Antlr4 . Runtime . Misc . IntervalSet ) vocabulary ; } else { vocabularyIS = new Antlr4 . Runtime . Misc . IntervalSet ( ) ; vocabularyIS . AddAll ( vocabulary ) ; } return vocabularyIS . Subtract ( this ) ; } |
public BatchRefUpdate setRefLogMessage ( String msg , boolean appendStatus ) { if ( msg == null && ! appendStatus ) disableRefLog ( ) ; else if ( msg == null && appendStatus ) { refLogMessage = "" ; refLogIncludeResult = true ; } else { refLogMessage = msg ; refLogIncludeResult = appendStatus ; } return this ; } | public virtual NGit . BatchRefUpdate SetRefLogMessage ( string msg , bool appendStatus ) { if ( msg == null && ! appendStatus ) { DisableRefLog ( ) ; } else { if ( msg == null && appendStatus ) { refLogMessage = string . Empty ; refLogIncludeResult = true ; } else { refLogMessage = msg ; refLogIncludeResult = appendStatus ; } } return this ; } |
public GetApnsVoipSandboxChannelResult getApnsVoipSandboxChannel ( GetApnsVoipSandboxChannelRequest request ) { request = beforeClientExecution ( request ) ; return executeGetApnsVoipSandboxChannel ( request ) ; } | public virtual GetApnsVoipSandboxChannelResponse GetApnsVoipSandboxChannel ( GetApnsVoipSandboxChannelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetApnsVoipSandboxChannelRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetApnsVoipSandboxChannelResponseUnmarshaller . Instance ; return Invoke < GetApnsVoipSandboxChannelResponse > ( request , options ) ; } |
public TokenStream create ( TokenStream input ) { return new ArabicNormalizationFilter ( input ) ; } | public override TokenStream Create ( TokenStream input ) { return new ArabicNormalizationFilter ( input ) ; } |
@ Override public boolean contains ( Object o ) { return Impl . this . containsValue ( o ) ; } | public override bool contains ( object o ) { return this . _enclosing . containsValue ( o ) ; } |
@ Override public boolean isEmpty ( ) { synchronized ( mutex ) { return c . isEmpty ( ) ; } } | public virtual bool isEmpty ( ) { lock ( mutex ) { return c . isEmpty ( ) ; } } |
public long get ( int index ) { return 0 ; } | public override long Get ( int index ) { return 0 ; } |
public DescribeSecurityGroupsResult describeSecurityGroups ( ) { return describeSecurityGroups ( new DescribeSecurityGroupsRequest ( ) ) ; } | public virtual DescribeSecurityGroupsResponse DescribeSecurityGroups ( ) { return DescribeSecurityGroups ( new DescribeSecurityGroupsRequest ( ) ) ; } |
public ListPartsRequest ( String accountId , String vaultName , String uploadId ) { setAccountId ( accountId ) ; setVaultName ( vaultName ) ; setUploadId ( uploadId ) ; } | public ListPartsRequest ( string accountId , string vaultName , string uploadId ) { _accountId = accountId ; _vaultName = vaultName ; _uploadId = uploadId ; } |
public GetCloudFrontOriginAccessIdentityRequest ( String id ) { setId ( id ) ; } | public GetCloudFrontOriginAccessIdentityRequest ( string id ) { _id = id ; } |
public DescribeAlarmHistoryResult describeAlarmHistory ( DescribeAlarmHistoryRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeAlarmHistory ( request ) ; } | public virtual DescribeAlarmHistoryResponse DescribeAlarmHistory ( DescribeAlarmHistoryRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeAlarmHistoryRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeAlarmHistoryResponseUnmarshaller . Instance ; return Invoke < DescribeAlarmHistoryResponse > ( request , options ) ; } |
public DescribeJobRequest ( String accountId , String vaultName , String jobId ) { setAccountId ( accountId ) ; setVaultName ( vaultName ) ; setJobId ( jobId ) ; } | public DescribeJobRequest ( string accountId , string vaultName , string jobId ) { _accountId = accountId ; _vaultName = vaultName ; _jobId = jobId ; } |
public DeleteTagCommand setTags ( String ... tags ) { checkCallable ( ) ; this . tags . clear ( ) ; this . tags . addAll ( Arrays . asList ( tags ) ) ; return this ; } | public virtual NGit . Api . DeleteTagCommand SetTags ( params string [ ] tags ) { CheckCallable ( ) ; this . tags . Clear ( ) ; foreach ( string tagName in tags ) { this . tags . AddItem ( tagName ) ; } return this ; } |
public ListVoiceConnectorGroupsResult listVoiceConnectorGroups ( ListVoiceConnectorGroupsRequest request ) { request = beforeClientExecution ( request ) ; return executeListVoiceConnectorGroups ( request ) ; } | public virtual ListVoiceConnectorGroupsResponse ListVoiceConnectorGroups ( ListVoiceConnectorGroupsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListVoiceConnectorGroupsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListVoiceConnectorGroupsResponseUnmarshaller . Instance ; return Invoke < ListVoiceConnectorGroupsResponse > ( request , options ) ; } |
public Intercept ( ) { func = new LinearRegressionFunction ( FUNCTION . INTERCEPT ) ; } | public Intercept ( ) { func = new LinearRegressionFunction ( LinearRegressionFunction . FUNCTION . INTERCEPT ) ; } |
public ProvisionByoipCidrResult provisionByoipCidr ( ProvisionByoipCidrRequest request ) { request = beforeClientExecution ( request ) ; return executeProvisionByoipCidr ( request ) ; } | public virtual ProvisionByoipCidrResponse ProvisionByoipCidr ( ProvisionByoipCidrRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ProvisionByoipCidrRequestMarshaller . Instance ; options . ResponseUnmarshaller = ProvisionByoipCidrResponseUnmarshaller . Instance ; return Invoke < ProvisionByoipCidrResponse > ( request , options ) ; } |
public BatchGetApplicationRevisionsResult batchGetApplicationRevisions ( BatchGetApplicationRevisionsRequest request ) { request = beforeClientExecution ( request ) ; return executeBatchGetApplicationRevisions ( request ) ; } | public virtual BatchGetApplicationRevisionsResponse BatchGetApplicationRevisions ( BatchGetApplicationRevisionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = BatchGetApplicationRevisionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = BatchGetApplicationRevisionsResponseUnmarshaller . Instance ; return Invoke < BatchGetApplicationRevisionsResponse > ( request , options ) ; } |
public void expandRow ( int rowNumber ) { if ( rowNumber == - 1 ) return ; if ( ! isRowGroupCollapsed ( rowNumber ) ) { return ; } int startIdx = findStartOfRowOutlineGroup ( rowNumber ) ; RowRecord row = getRow ( startIdx ) ; int endIdx = findEndOfRowOutlineGroup ( rowNumber ) ; if ( ! isRowGroupHiddenByParent ( rowNumber ) ) { for ( int i = startIdx ; i <= endIdx ; i ++ ) { RowRecord otherRow = getRow ( i ) ; if ( row . getOutlineLevel ( ) == otherRow . getOutlineLevel ( ) || ! isRowGroupCollapsed ( i ) ) { otherRow . setZeroHeight ( false ) ; } } } getRow ( endIdx + 1 ) . setColapsed ( false ) ; } | public void ExpandRow ( int rowNumber ) { int idx = rowNumber ; if ( idx == - 1 ) return ; if ( ! IsRowGroupCollapsed ( idx ) ) return ; int startIdx = FindStartOfRowOutlineGroup ( idx ) ; RowRecord row = GetRow ( startIdx ) ; int endIdx = FindEndOfRowOutlineGroup ( idx ) ; if ( ! IsRowGroupHiddenByParent ( idx ) ) { for ( int i = startIdx ; i <= endIdx ; i ++ ) { if ( row . OutlineLevel == GetRow ( i ) . OutlineLevel ) GetRow ( i ) . ZeroHeight = ( false ) ; else if ( ! IsRowGroupCollapsed ( i ) ) GetRow ( i ) . ZeroHeight = ( false ) ; } } GetRow ( endIdx + 1 ) . Colapsed = ( false ) ; } |
public GetSendQuotaResult getSendQuota ( GetSendQuotaRequest request ) { request = beforeClientExecution ( request ) ; return executeGetSendQuota ( request ) ; } | public virtual GetSendQuotaResponse GetSendQuota ( GetSendQuotaRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetSendQuotaRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetSendQuotaResponseUnmarshaller . Instance ; return Invoke < GetSendQuotaResponse > ( request , options ) ; } |
public FeatFormulaErr2 ( RecordInputStream in ) { errorCheck = in . readInt ( ) ; } | public FeatFormulaErr2 ( RecordInputStream in1 ) { errorCheck = in1 . ReadInt ( ) ; } |
public DefineAnalysisSchemeResult defineAnalysisScheme ( DefineAnalysisSchemeRequest request ) { request = beforeClientExecution ( request ) ; return executeDefineAnalysisScheme ( request ) ; } | public virtual DefineAnalysisSchemeResponse DefineAnalysisScheme ( DefineAnalysisSchemeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DefineAnalysisSchemeRequestMarshaller . Instance ; options . ResponseUnmarshaller = DefineAnalysisSchemeResponseUnmarshaller . Instance ; return Invoke < DefineAnalysisSchemeResponse > ( request , options ) ; } |
public boolean equals ( Object o ) { return o instanceof IrishStemmer ; } | public override bool Equals ( object o ) { return o is IrishStemmer ; } |
public UTF8Sequence ( ) { bytes = new UTF8Byte [ 4 ] ; for ( int i = 0 ; i < 4 ; i ++ ) { bytes [ i ] = new UTF8Byte ( ) ; } } | public UTF8Sequence ( ) { bytes = new UTF8Byte [ 4 ] ; for ( int i = 0 ; i < 4 ; i ++ ) { bytes [ i ] = new UTF8Byte ( ) ; } } |
public ListPhotosRequest ( ) { super ( "CloudPhoto" , "2017-07-11" , "ListPhotos" , "cloudphoto" ) ; setProtocol ( ProtocolType . HTTPS ) ; } | public ListPhotosRequest ( ) : base ( "CloudPhoto" , "2017-07-11" , "ListPhotos" , "cloudphoto" , "openAPI" ) { Protocol = ProtocolType . HTTPS ; } |
public RegisterStreamConsumerResult registerStreamConsumer ( RegisterStreamConsumerRequest request ) { request = beforeClientExecution ( request ) ; return executeRegisterStreamConsumer ( request ) ; } | public virtual RegisterStreamConsumerResponse RegisterStreamConsumer ( RegisterStreamConsumerRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RegisterStreamConsumerRequestMarshaller . Instance ; options . ResponseUnmarshaller = RegisterStreamConsumerResponseUnmarshaller . Instance ; return Invoke < RegisterStreamConsumerResponse > ( request , options ) ; } |
public Formula copy ( ) { return this ; } | public Formula Copy ( ) { return this ; } |
public boolean equals ( Object obj ) { if ( this == obj ) return true ; if ( obj == null ) return false ; if ( getClass ( ) != obj . getClass ( ) ) return false ; MergeInfo other = ( MergeInfo ) obj ; if ( estimatedMergeBytes != other . estimatedMergeBytes ) return false ; if ( isExternal != other . isExternal ) return false ; if ( mergeMaxNumSegments != other . mergeMaxNumSegments ) return false ; if ( totalMaxDoc != other . totalMaxDoc ) return false ; return true ; } | public override bool Equals ( object obj ) { if ( this == obj ) { return true ; } if ( obj == null ) { return false ; } if ( this . GetType ( ) != obj . GetType ( ) ) { return false ; } MergeInfo other = ( MergeInfo ) obj ; if ( EstimatedMergeBytes != other . EstimatedMergeBytes ) { return false ; } if ( IsExternal != other . IsExternal ) { return false ; } if ( MergeMaxNumSegments != other . MergeMaxNumSegments ) { return false ; } if ( TotalDocCount != other . TotalDocCount ) { return false ; } return true ; } |
public float score ( float freq , long norm ) { float sum = 0.0f ; for ( SimScorer subScorer : subScorers ) { sum += subScorer . score ( freq , norm ) ; } return sum ; } | public override float Score ( int doc , float freq ) { float sum = 0.0f ; foreach ( SimScorer subScorer in subScorers ) { sum += subScorer . Score ( doc , freq ) ; } return sum ; } |
public AddTagsRequest ( String resourceId , java . util . List < Tag > tags ) { setResourceId ( resourceId ) ; setTags ( tags ) ; } | public AddTagsRequest ( string resourceId , List < Tag > tags ) { _resourceId = resourceId ; _tags = tags ; } |
public DescribeEC2InstanceLimitsResult describeEC2InstanceLimits ( DescribeEC2InstanceLimitsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeEC2InstanceLimits ( request ) ; } | public virtual DescribeEC2InstanceLimitsResponse DescribeEC2InstanceLimits ( DescribeEC2InstanceLimitsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeEC2InstanceLimitsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeEC2InstanceLimitsResponseUnmarshaller . Instance ; return Invoke < DescribeEC2InstanceLimitsResponse > ( request , options ) ; } |
public BlameGenerator setFollowFileRenames ( boolean follow ) { if ( follow ) renameDetector = new RenameDetector ( getRepository ( ) ) ; elserenameDetector = null ; return this ; } | public virtual NGit . Blame . BlameGenerator SetFollowFileRenames ( bool follow ) { if ( follow ) { renameDetector = new RenameDetector ( GetRepository ( ) ) ; } else { renameDetector = null ; } return this ; } |
public GetStagesResult getStages ( GetStagesRequest request ) { request = beforeClientExecution ( request ) ; return executeGetStages ( request ) ; } | public virtual GetStagesResponse GetStages ( GetStagesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetStagesRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetStagesResponseUnmarshaller . Instance ; return Invoke < GetStagesResponse > ( request , options ) ; } |
public void setParsedExpression ( Ptg [ ] ptgs ) { field_5_name_definition = Formula . create ( ptgs ) ; } | public void SetParsedExpression ( Ptg [ ] ptgs ) { field_5_name_definition = Formula . Create ( ptgs ) ; } |
public int getRightId ( int wordId ) { return rightIds [ wordId ] ; } | public int GetRightId ( int wordId ) { return RIGHT_ID ; } |
public GetChangeRequest ( String id ) { setId ( id ) ; } | public GetChangeRequest ( string id ) { _id = id ; } |
public RegisterPhotoRequest ( ) { super ( "CloudPhoto" , "2017-07-11" , "RegisterPhoto" , "cloudphoto" ) ; setProtocol ( ProtocolType . HTTPS ) ; } | public RegisterPhotoRequest ( ) : base ( "CloudPhoto" , "2017-07-11" , "RegisterPhoto" , "cloudphoto" , "openAPI" ) { Protocol = ProtocolType . HTTPS ; } |
public void more ( ) { _type = MORE ; } | public virtual void More ( ) { _type = TokenTypes . More ; } |
public final Buffer position ( int newPosition ) { positionImpl ( newPosition ) ; return this ; } | public java . nio . Buffer position ( int newPosition ) { positionImpl ( newPosition ) ; return this ; } |
public ScenarioProtectRecord ( RecordInputStream in ) { field_1_protect = in . readShort ( ) ; } | public ScenarioProtectRecord ( RecordInputStream in1 ) { field_1_protect = in1 . ReadShort ( ) ; } |
public static TopFieldDocs merge ( Sort sort , int topN , TopFieldDocs [ ] shardHits ) { return merge ( sort , 0 , topN , shardHits ) ; } | public static TopDocs Merge ( Sort sort , int topN , TopDocs [ ] shardHits ) { return Merge ( sort , 0 , topN , shardHits ) ; } |
public LexerModeAction ( int mode ) { this . mode = mode ; } | public LexerModeAction ( int mode ) { this . mode = mode ; } |
public boolean canExecute ( File f ) { return false ; } | public override bool CanExecute ( FilePath f ) { return false ; } |
public int preceding ( int pos ) { if ( pos < text . getBeginIndex ( ) || pos > text . getEndIndex ( ) ) { throw new IllegalArgumentException ( "offset out of bounds" ) ; } else if ( 0 == sentenceStarts . length ) { text . setIndex ( text . getBeginIndex ( ) ) ; currentSentence = 0 ; return DONE ; } else if ( pos < sentenceStarts [ 0 ] ) { text . setIndex ( text . getBeginIndex ( ) ) ; currentSentence = 0 ; return DONE ; } else { currentSentence = sentenceStarts . length / 2 ; moveToSentenceAt ( pos , 0 , sentenceStarts . length - 1 ) ; if ( 0 == currentSentence ) { text . setIndex ( text . getBeginIndex ( ) ) ; return DONE ; } else { text . setIndex ( sentenceStarts [ -- currentSentence ] ) ; return current ( ) ; } } } | public override int Preceding ( int pos ) { if ( pos < text . BeginIndex || pos > text . EndIndex ) { throw new ArgumentException ( "offset out of bounds" ) ; } else if ( 0 == sentenceStarts . Length ) { text . SetIndex ( text . BeginIndex ) ; currentSentence = 0 ; return Done ; } else if ( pos < sentenceStarts [ 0 ] ) { text . SetIndex ( text . BeginIndex ) ; currentSentence = 0 ; return Done ; } else { currentSentence = sentenceStarts . Length / 2 ; MoveToSentenceAt ( pos , 0 , sentenceStarts . Length - 1 ) ; if ( 0 == currentSentence ) { text . SetIndex ( text . BeginIndex ) ; return Done ; } else { text . SetIndex ( sentenceStarts [ -- currentSentence ] ) ; return Current ; } } } |
public int serialize ( int offset , byte [ ] data ) { throw new RecordFormatException ( "Cannot serialize a dummy record" ) ; } | public override int Serialize ( int offset , byte [ ] data ) { throw new RecordFormatException ( "Cannot serialize a dummy record" ) ; } |
public DetachObjectResult detachObject ( DetachObjectRequest request ) { request = beforeClientExecution ( request ) ; return executeDetachObject ( request ) ; } | public virtual DetachObjectResponse DetachObject ( DetachObjectRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DetachObjectRequestMarshaller . Instance ; options . ResponseUnmarshaller = DetachObjectResponseUnmarshaller . Instance ; return Invoke < DetachObjectResponse > ( request , options ) ; } |
public WorkflowTypeDetail describeWorkflowType ( DescribeWorkflowTypeRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeWorkflowType ( request ) ; } | public virtual DescribeWorkflowTypeResponse DescribeWorkflowType ( DescribeWorkflowTypeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeWorkflowTypeRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeWorkflowTypeResponseUnmarshaller . Instance ; return Invoke < DescribeWorkflowTypeResponse > ( request , options ) ; } |
public static void clearModels ( ) { sentenceModels . clear ( ) ; tokenizerModels . clear ( ) ; posTaggerModels . clear ( ) ; chunkerModels . clear ( ) ; nerModels . clear ( ) ; lemmaDictionaries . clear ( ) ; } | public static void ClearModels ( ) { sentenceModels . Clear ( ) ; tokenizerModels . Clear ( ) ; posTaggerModels . Clear ( ) ; chunkerModels . Clear ( ) ; nerModels . Clear ( ) ; lemmaDictionaries . Clear ( ) ; } |
public static String refLockFor ( String name ) { return name + LOCK_SUFFIX ; } | public static string RefLockFor ( string name ) { return name + LockFile . SUFFIX ; } |
public DeleteComponentResult deleteComponent ( DeleteComponentRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteComponent ( request ) ; } | public virtual DeleteComponentResponse DeleteComponent ( DeleteComponentRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteComponentRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteComponentResponseUnmarshaller . Instance ; return Invoke < DeleteComponentResponse > ( request , options ) ; } |
public String toString ( ) { StringBuilder sb = new StringBuilder ( ) ; sb . append ( "[STYLE]\n" ) ; sb . append ( " .xf_index_raw =" ) . append ( HexDump . shortToHex ( field_1_xf_index ) ) . append ( "\n" ) ; sb . append ( " .type =" ) . append ( isBuiltin ( ) ? "built-in" : "user-defined" ) . append ( "\n" ) ; sb . append ( " .xf_index =" ) . append ( HexDump . shortToHex ( getXFIndex ( ) ) ) . append ( "\n" ) ; if ( isBuiltin ( ) ) { sb . append ( " .builtin_style=" ) . append ( HexDump . byteToHex ( field_2_builtin_style ) ) . append ( "\n" ) ; sb . append ( " .outline_level=" ) . append ( HexDump . byteToHex ( field_3_outline_style_level ) ) . append ( "\n" ) ; } else { sb . append ( " .name =" ) . append ( getName ( ) ) . append ( "\n" ) ; } sb . append ( "[/STYLE]\n" ) ; return sb . toString ( ) ; } | public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "[STYLE]\n" ) ; buffer . Append ( " .xf_index_raw = " ) . Append ( HexDump . ShortToHex ( field_1_xf_index ) ) . Append ( "\n" ) ; buffer . Append ( " .type = " ) . Append ( IsBuiltin ? "built-in" : "user-defined" ) . Append ( "\n" ) ; buffer . Append ( " .xf_index = " ) . Append ( HexDump . ShortToHex ( XFIndex ) ) . Append ( "\n" ) ; if ( IsBuiltin ) { buffer . Append ( " .builtin_style = " ) . Append ( HexDump . ByteToHex ( field_2_builtin_style ) ) . Append ( "\n" ) ; buffer . Append ( " .outline_level = " ) . Append ( HexDump . ByteToHex ( field_3_outline_style_level ) ) . Append ( "\n" ) ; } else { buffer . Append ( " .name = " ) . Append ( Name ) . Append ( "\n" ) ; } buffer . Append ( "[/STYLE]\n" ) ; return buffer . ToString ( ) ; } |
public DescribeAuditStreamConfigurationResult describeAuditStreamConfiguration ( DescribeAuditStreamConfigurationRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeAuditStreamConfiguration ( request ) ; } | public virtual DescribeAuditStreamConfigurationResponse DescribeAuditStreamConfiguration ( DescribeAuditStreamConfigurationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeAuditStreamConfigurationRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeAuditStreamConfigurationResponseUnmarshaller . Instance ; return Invoke < DescribeAuditStreamConfigurationResponse > ( request , options ) ; } |
public String toString ( ) { if ( getChildren ( ) == null || getChildren ( ) . size ( ) == 0 ) return "<any field='" + this . field + "' matchelements=" + this . minimumMatchingmElements + "/>" ; StringBuilder sb = new StringBuilder ( ) ; sb . append ( "<any field='" ) . append ( this . field ) . append ( "' matchelements=" ) . append ( this . minimumMatchingmElements ) . append ( '>' ) ; for ( QueryNode clause : getChildren ( ) ) { sb . append ( "\n" ) ; sb . append ( clause . toString ( ) ) ; } sb . append ( "\n</any>" ) ; return sb . toString ( ) ; } | public override string ToString ( ) { var children = GetChildren ( ) ; if ( children == null || children . Count == 0 ) return "<any field='" + this . field + "' matchelements=" + this . minimumMatchingmElements + "/>" ; StringBuilder sb = new StringBuilder ( ) ; sb . Append ( "<any field='" + this . field + "' matchelements=" + this . minimumMatchingmElements + ">" ) ; foreach ( IQueryNode clause in children ) { sb . Append ( "\n" ) ; sb . Append ( clause . ToString ( ) ) ; } sb . Append ( "\n</any>" ) ; return sb . ToString ( ) ; } |
public AssociateSkillWithSkillGroupResult associateSkillWithSkillGroup ( AssociateSkillWithSkillGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeAssociateSkillWithSkillGroup ( request ) ; } | public virtual AssociateSkillWithSkillGroupResponse AssociateSkillWithSkillGroup ( AssociateSkillWithSkillGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = AssociateSkillWithSkillGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = AssociateSkillWithSkillGroupResponseUnmarshaller . Instance ; return Invoke < AssociateSkillWithSkillGroupResponse > ( request , options ) ; } |
public String getFetchedFrom ( ) { return this . fetchedFrom ; } | public virtual string GetFetchedFrom ( ) { return this . fetchedFrom ; } |
public static Counter newCounter ( boolean threadSafe ) { return threadSafe ? new AtomicCounter ( ) : new SerialCounter ( ) ; } | public static Counter NewCounter ( bool threadSafe ) { return threadSafe ? ( Counter ) new AtomicCounter ( ) : new SerialCounter ( ) ; } |
public FloatBuffer slice ( ) { return new ReadWriteFloatArrayBuffer ( remaining ( ) , backingArray , offset + position ) ; } | public override java . nio . FloatBuffer slice ( ) { return new java . nio . ReadWriteFloatArrayBuffer ( remaining ( ) , backingArray , offset + _position ) ; } |
public ListProcessingJobsResult listProcessingJobs ( ListProcessingJobsRequest request ) { request = beforeClientExecution ( request ) ; return executeListProcessingJobs ( request ) ; } | public virtual ListProcessingJobsResponse ListProcessingJobs ( ListProcessingJobsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListProcessingJobsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListProcessingJobsResponseUnmarshaller . Instance ; return Invoke < ListProcessingJobsResponse > ( request , options ) ; } |
public void recover ( RecognitionException re ) { _input . consume ( ) ; } | public virtual void Recover ( RecognitionException re ) { _input . Consume ( ) ; } |
public CreateTemplateAliasResult createTemplateAlias ( CreateTemplateAliasRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateTemplateAlias ( request ) ; } | public virtual CreateTemplateAliasResponse CreateTemplateAlias ( CreateTemplateAliasRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateTemplateAliasRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateTemplateAliasResponseUnmarshaller . Instance ; return Invoke < CreateTemplateAliasResponse > ( request , options ) ; } |
public final Buffer reset ( ) { if ( mark == UNSET_MARK ) { throw new InvalidMarkException ( "Mark not set" ) ; } position = mark ; return this ; } | public java . nio . Buffer reset ( ) { if ( _mark == UNSET_MARK ) { throw new java . nio . InvalidMarkException ( "Mark not set" ) ; } _position = _mark ; return this ; } |
@ Override public synchronized boolean equals ( Object object ) { return ( object instanceof Map ) && entrySet ( ) . equals ( ( ( Map < ? , ? > ) object ) . entrySet ( ) ) ; } | public override bool Equals ( object @ object ) { lock ( this ) { return ( @ object is java . util . Map < K , V > ) && entrySet ( ) . Equals ( ( ( java . util . Map < object , object > ) @ object ) . entrySet ( ) ) ; } } |
public void tagResource ( TagResourceRequest request ) { request = beforeClientExecution ( request ) ; executeTagResource ( request ) ; } | public virtual TagResourceResponse TagResource ( TagResourceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = TagResourceRequestMarshaller . Instance ; options . ResponseUnmarshaller = TagResourceResponseUnmarshaller . Instance ; return Invoke < TagResourceResponse > ( request , options ) ; } |
public BytesRef common ( BytesRef output1 , BytesRef output2 ) { assert output1 != null ; assert output2 != null ; int pos1 = output1 . offset ; int pos2 = output2 . offset ; int stopAt1 = pos1 + Math . min ( output1 . length , output2 . length ) ; while ( pos1 < stopAt1 ) { if ( output1 . bytes [ pos1 ] != output2 . bytes [ pos2 ] ) { break ; } pos1 ++ ; pos2 ++ ; } if ( pos1 == output1 . offset ) { return NO_OUTPUT ; } else if ( pos1 == output1 . offset + output1 . length ) { return output1 ; } else if ( pos2 == output2 . offset + output2 . length ) { return output2 ; } else { return new BytesRef ( output1 . bytes , output1 . offset , pos1 - output1 . offset ) ; } } | public override BytesRef Common ( BytesRef output1 , BytesRef output2 ) { Debug . Assert ( output1 != null ) ; Debug . Assert ( output2 != null ) ; int pos1 = output1 . Offset ; int pos2 = output2 . Offset ; int stopAt1 = pos1 + Math . Min ( output1 . Length , output2 . Length ) ; while ( pos1 < stopAt1 ) { if ( output1 . Bytes [ pos1 ] != output2 . Bytes [ pos2 ] ) { break ; } pos1 ++ ; pos2 ++ ; } if ( pos1 == output1 . Offset ) { return NO_OUTPUT ; } else if ( pos1 == output1 . Offset + output1 . Length ) { return output1 ; } else if ( pos2 == output2 . Offset + output2 . Length ) { return output2 ; } else { return new BytesRef ( output1 . Bytes , output1 . Offset , pos1 - output1 . Offset ) ; } } |
public E getFirst ( ) { return getFirstImpl ( ) ; } | public virtual E getFirst ( ) { return getFirstImpl ( ) ; } |
public ObjectId computeId ( ObjectInserter ins ) { if ( buf != null ) return ins . idFor ( OBJ_TREE , buf , 0 , ptr ) ; final long len = overflowBuffer . length ( ) ; try { return ins . idFor ( OBJ_TREE , len , overflowBuffer . openInputStream ( ) ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } } | public virtual ObjectId ComputeId ( ObjectInserter ins ) { if ( buf != null ) { return ins . IdFor ( Constants . OBJ_TREE , buf , 0 , ptr ) ; } long len = overflowBuffer . Length ( ) ; try { return ins . IdFor ( Constants . OBJ_TREE , len , overflowBuffer . OpenInputStream ( ) ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } } |
public TransferDomainResult transferDomain ( TransferDomainRequest request ) { request = beforeClientExecution ( request ) ; return executeTransferDomain ( request ) ; } | public virtual TransferDomainResponse TransferDomain ( TransferDomainRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = TransferDomainRequestMarshaller . Instance ; options . ResponseUnmarshaller = TransferDomainResponseUnmarshaller . Instance ; return Invoke < TransferDomainResponse > ( request , options ) ; } |
public String toString ( ) { synchronized ( lock ) { return new String ( buf , 0 , count ) ; } } | public override string ToString ( ) { lock ( @ lock ) { return new string ( buf , 0 , count ) ; } } |
public DescribeReservedNodeOfferingsResult describeReservedNodeOfferings ( DescribeReservedNodeOfferingsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeReservedNodeOfferings ( request ) ; } | public virtual DescribeReservedNodeOfferingsResponse DescribeReservedNodeOfferings ( DescribeReservedNodeOfferingsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeReservedNodeOfferingsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeReservedNodeOfferingsResponseUnmarshaller . Instance ; return Invoke < DescribeReservedNodeOfferingsResponse > ( request , options ) ; } |
public String toString ( String field ) { StringBuilder buffer = new StringBuilder ( ) ; if ( ! term . field ( ) . equals ( field ) ) { buffer . append ( term . field ( ) ) ; buffer . append ( ":" ) ; } buffer . append ( term . text ( ) ) ; return buffer . toString ( ) ; } | public override string ToString ( string field ) { StringBuilder buffer = new StringBuilder ( ) ; if ( ! term . Field . Equals ( field , StringComparison . Ordinal ) ) { buffer . Append ( term . Field ) ; buffer . Append ( ":" ) ; } buffer . Append ( term . Text ( ) ) ; buffer . Append ( ToStringUtils . Boost ( Boost ) ) ; return buffer . ToString ( ) ; } |
public IntBuffer duplicate ( ) { ByteBuffer bb = byteBuffer . duplicate ( ) . order ( byteBuffer . order ( ) ) ; IntToByteBufferAdapter buf = new IntToByteBufferAdapter ( bb ) ; buf . limit = limit ; buf . position = position ; buf . mark = mark ; return buf ; } | public override java . nio . IntBuffer duplicate ( ) { java . nio . ByteBuffer bb = byteBuffer . duplicate ( ) . order ( byteBuffer . order ( ) ) ; java . nio . IntToByteBufferAdapter buf = new java . nio . IntToByteBufferAdapter ( bb ) ; buf . _limit = _limit ; buf . _position = _position ; buf . _mark = _mark ; return buf ; } |
public String toString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . append ( "[SERTOCRT]\n" ) ; buffer . append ( " .chartGroupIndex = " ) . append ( "0x" ) . append ( HexDump . toHex ( getChartGroupIndex ( ) ) ) . append ( " (" ) . append ( getChartGroupIndex ( ) ) . append ( " )" ) ; buffer . append ( System . getProperty ( "line.separator" ) ) ; buffer . append ( "[/SERTOCRT]\n" ) ; return buffer . toString ( ) ; } | public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "[SERTOCRT]\n" ) ; buffer . Append ( " .chartGroupIndex = " ) . Append ( "0x" ) . Append ( HexDump . ToHex ( ChartGroupIndex ) ) . Append ( " (" ) . Append ( ChartGroupIndex ) . Append ( " )" ) ; buffer . Append ( Environment . NewLine ) ; buffer . Append ( "[/SERTOCRT]\n" ) ; return buffer . ToString ( ) ; } |
public boolean canHandle ( URIish uri ) { return canHandle ( uri , null , null ) ; } | public virtual bool CanHandle ( URIish uri ) { return CanHandle ( uri , null , null ) ; } |
public GetImportJobResult getImportJob ( GetImportJobRequest request ) { request = beforeClientExecution ( request ) ; return executeGetImportJob ( request ) ; } | public virtual GetImportJobResponse GetImportJob ( GetImportJobRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetImportJobRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetImportJobResponseUnmarshaller . Instance ; return Invoke < GetImportJobResponse > ( request , options ) ; } |
public LookupDeveloperIdentityResult lookupDeveloperIdentity ( LookupDeveloperIdentityRequest request ) { request = beforeClientExecution ( request ) ; return executeLookupDeveloperIdentity ( request ) ; } | public virtual LookupDeveloperIdentityResponse LookupDeveloperIdentity ( LookupDeveloperIdentityRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = LookupDeveloperIdentityRequestMarshaller . Instance ; options . ResponseUnmarshaller = LookupDeveloperIdentityResponseUnmarshaller . Instance ; return Invoke < LookupDeveloperIdentityResponse > ( request , options ) ; } |
public FloatBuffer put ( float c ) { if ( position == limit ) { throw new BufferOverflowException ( ) ; } backingArray [ offset + position ++ ] = c ; return this ; } | public override java . nio . FloatBuffer put ( float c ) { if ( _position == _limit ) { throw new java . nio . BufferOverflowException ( ) ; } backingArray [ offset + _position ++ ] = c ; return this ; } |
public RefModeRecord ( RecordInputStream in ) { field_1_mode = in . readShort ( ) ; } | public RefModeRecord ( RecordInputStream in1 ) { field_1_mode = in1 . ReadShort ( ) ; } |
public BulkOperationPackedSingleBlock ( int bitsPerValue ) { this . bitsPerValue = bitsPerValue ; this . valueCount = 64 / bitsPerValue ; this . mask = ( 1L << bitsPerValue ) - 1 ; } | public BulkOperationPackedSingleBlock ( int bitsPerValue ) { this . bitsPerValue = bitsPerValue ; this . valueCount = 64 / bitsPerValue ; this . mask = ( 1L << bitsPerValue ) - 1 ; } |
public static String dateToString ( Date date , Resolution resolution ) { return timeToString ( date . getTime ( ) , resolution ) ; } | public static string DateToString ( DateTime date , Resolution resolution ) { return TimeToString ( date . Ticks / TimeSpan . TicksPerMillisecond , resolution ) ; } |
public DescribeUserHierarchyStructureResult describeUserHierarchyStructure ( DescribeUserHierarchyStructureRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeUserHierarchyStructure ( request ) ; } | public virtual DescribeUserHierarchyStructureResponse DescribeUserHierarchyStructure ( DescribeUserHierarchyStructureRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeUserHierarchyStructureRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeUserHierarchyStructureResponseUnmarshaller . Instance ; return Invoke < DescribeUserHierarchyStructureResponse > ( request , options ) ; } |
public GetDomainsResult getDomains ( GetDomainsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetDomains ( request ) ; } | public virtual GetDomainsResponse GetDomains ( GetDomainsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetDomainsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetDomainsResponseUnmarshaller . Instance ; return Invoke < GetDomainsResponse > ( request , options ) ; } |
public int getStreamFileThreshold ( ) { return streamFileThreshold ; } | public virtual int GetStreamFileThreshold ( ) { return streamFileThreshold ; } |
public BatchGetDeploymentInstancesResult batchGetDeploymentInstances ( BatchGetDeploymentInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeBatchGetDeploymentInstances ( request ) ; } | public virtual BatchGetDeploymentInstancesResponse BatchGetDeploymentInstances ( BatchGetDeploymentInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = BatchGetDeploymentInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = BatchGetDeploymentInstancesResponseUnmarshaller . Instance ; return Invoke < BatchGetDeploymentInstancesResponse > ( request , options ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.