question
stringlengths 33
1.59k
| target
stringlengths 33
1.58k
|
|---|---|
public PlacementGroup ( String groupName ) { setGroupName ( groupName ) ; }
|
public PlacementGroup ( string groupName ) { _groupName = groupName ; }
|
public SendCustomVerificationEmailResult sendCustomVerificationEmail ( SendCustomVerificationEmailRequest request ) { request = beforeClientExecution ( request ) ; return executeSendCustomVerificationEmail ( request ) ; }
|
public virtual SendCustomVerificationEmailResponse SendCustomVerificationEmail ( SendCustomVerificationEmailRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SendCustomVerificationEmailRequestMarshaller . Instance ; options . ResponseUnmarshaller = SendCustomVerificationEmailResponseUnmarshaller . Instance ; return Invoke < SendCustomVerificationEmailResponse > ( request , options ) ; }
|
public CreateCollectionRequest ( ) { super ( "cr" , "2016-06-07" , "CreateCollection" , "cr" ) ; setUriPattern ( "/collections" ) ; setMethod ( MethodType . PUT ) ; }
|
public CreateCollectionRequest ( ) : base ( "cr" , "2016-06-07" , "CreateCollection" , "cr" , "openAPI" ) { UriPattern = "/collections" ; Method = MethodType . PUT ; }
|
public synchronized boolean remove ( Object o ) { int index = indexOf ( o ) ; if ( index == - 1 ) { return false ; } remove ( index ) ; return true ; }
|
public virtual bool remove ( object o ) { lock ( this ) { int index = indexOf ( o ) ; if ( index == - 1 ) { return false ; } remove ( index ) ; return true ; } }
|
public final boolean matches ( char c ) { return Character . isDigit ( c ) ; }
|
public bool Matches ( char c ) { return char . IsDigit ( c ) ; }
|
public void serialize ( LittleEndianOutput out ) { out . writeByte ( getWSBool2 ( ) ) ; out . writeByte ( getWSBool1 ( ) ) ; }
|
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteByte ( WSBool1 ) ; out1 . WriteByte ( WSBool2 ) ; }
|
public SubmitGenerateTaskRequest ( ) { super ( "lubancloud" , "2018-05-09" , "SubmitGenerateTask" , "luban" ) ; setMethod ( MethodType . POST ) ; }
|
public SubmitGenerateTaskRequest ( ) : base ( "lubancloud" , "2018-05-09" , "SubmitGenerateTask" , "luban" , "openAPI" ) { Method = MethodType . POST ; }
|
public E ceiling ( E e ) { return backingMap . ceilingKey ( e ) ; }
|
public virtual E ceiling ( E e ) { return backingMap . ceilingKey ( e ) ; }
|
public BatchApplyUpdateActionResult batchApplyUpdateAction ( BatchApplyUpdateActionRequest request ) { request = beforeClientExecution ( request ) ; return executeBatchApplyUpdateAction ( request ) ; }
|
public virtual BatchApplyUpdateActionResponse BatchApplyUpdateAction ( BatchApplyUpdateActionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = BatchApplyUpdateActionRequestMarshaller . Instance ; options . ResponseUnmarshaller = BatchApplyUpdateActionResponseUnmarshaller . Instance ; return Invoke < BatchApplyUpdateActionResponse > ( request , options ) ; }
|
public Break ( RecordInputStream in ) { main = in . readUShort ( ) - 1 ; subFrom = in . readUShort ( ) ; subTo = in . readUShort ( ) ; }
|
public Break ( RecordInputStream in1 ) { main = in1 . ReadUShort ( ) - 1 ; subFrom = in1 . ReadUShort ( ) ; subTo = in1 . ReadUShort ( ) ; }
|
public FileNameMatcher createMatcherForSuffix ( ) { final List < Head > copyOfHeads = new ArrayList < > ( heads . size ( ) ) ; copyOfHeads . addAll ( heads ) ; return new FileNameMatcher ( copyOfHeads ) ; }
|
public virtual NGit . Fnmatch . FileNameMatcher CreateMatcherForSuffix ( ) { IList < Head > copyOfHeads = new AList < Head > ( heads . Count ) ; Sharpen . Collections . AddAll ( copyOfHeads , heads ) ; return new NGit . Fnmatch . FileNameMatcher ( copyOfHeads ) ; }
|
public static boolean isEmptyOrNull ( String stringValue ) { return stringValue == null || stringValue . length ( ) == 0 ; }
|
public static bool IsEmptyOrNull ( string stringValue ) { return stringValue == null || stringValue . Length == 0 ; }
|
public static char [ ] grow ( char [ ] array ) { return grow ( array , 1 + array . length ) ; }
|
public static short [ ] Grow ( short [ ] array ) { return Grow ( array , 1 + array . Length ) ; }
|
public ModifySubnetAttributeResult modifySubnetAttribute ( ModifySubnetAttributeRequest request ) { request = beforeClientExecution ( request ) ; return executeModifySubnetAttribute ( request ) ; }
|
public virtual ModifySubnetAttributeResponse ModifySubnetAttribute ( ModifySubnetAttributeRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ModifySubnetAttributeRequestMarshaller . Instance ; options . ResponseUnmarshaller = ModifySubnetAttributeResponseUnmarshaller . Instance ; return Invoke < ModifySubnetAttributeResponse > ( request , options ) ; }
|
public GetProxySessionResult getProxySession ( GetProxySessionRequest request ) { request = beforeClientExecution ( request ) ; return executeGetProxySession ( request ) ; }
|
public virtual GetProxySessionResponse GetProxySession ( GetProxySessionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetProxySessionRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetProxySessionResponseUnmarshaller . Instance ; return Invoke < GetProxySessionResponse > ( request , options ) ; }
|
public String toString ( ) { return "TermStats{" + "decodedTermText='" + decodedTermText + '\'' + ", field='" + field + '\'' + ", docFreq=" + docFreq + '}' ; }
|
public override string ToString ( ) { return ( "TermStats: Term=" + termtext . Utf8ToString ( ) + " DocFreq=" + DocFreq + " TotalTermFreq=" + TotalTermFreq ) ; }
|
public String getSignificantDecimalDigitsLastDigitRounded ( ) { long wp = _wholePart + 5 ; StringBuilder sb = new StringBuilder ( 24 ) ; sb . append ( wp ) ; sb . setCharAt ( sb . length ( ) - 1 , '0' ) ; return sb . toString ( ) ; }
|
public String GetSignificantDecimalDigitsLastDigitRounded ( ) { long wp = _wholePart + 5 ; StringBuilder sb = new StringBuilder ( 24 ) ; sb . Append ( wp ) ; sb [ sb . Length - 1 ] = '0' ; return sb . ToString ( ) ; }
|
public boolean canReuse ( IndexInput docIn , FieldInfo fieldInfo ) { return docIn == startDocIn && indexHasFreq == ( fieldInfo . getIndexOptions ( ) . compareTo ( IndexOptions . DOCS_AND_FREQS ) >= 0 ) && indexHasPos == ( fieldInfo . getIndexOptions ( ) . compareTo ( IndexOptions . DOCS_AND_FREQS_AND_POSITIONS ) >= 0 ) && indexHasPayloads == fieldInfo . hasPayloads ( ) ; }
|
public bool CanReuse ( IndexInput docIn , FieldInfo fieldInfo ) { return docIn == startDocIn && indexHasFreq == ( fieldInfo . IndexOptions . CompareTo ( IndexOptions . DOCS_AND_FREQS ) >= 0 ) && indexHasPos == ( fieldInfo . IndexOptions . CompareTo ( IndexOptions . DOCS_AND_FREQS_AND_POSITIONS ) >= 0 ) && indexHasPayloads == fieldInfo . HasPayloads ; }
|
public Sort ( SortField field ) { setSort ( field ) ; }
|
public Sort ( SortField field ) { SetSort ( field ) ; }
|
public static byte [ ] encodeASCII ( String s ) { final byte [ ] r = new byte [ s . length ( ) ] ; for ( int k = r . length - 1 ; k >= 0 ; k -- ) { final char c = s . charAt ( k ) ; if ( c > 127 ) throw new IllegalArgumentException ( MessageFormat . format ( JGitText . get ( ) . notASCIIString , s ) ) ; r [ k ] = ( byte ) c ; } return r ; }
|
public static byte [ ] EncodeASCII ( string s ) { byte [ ] r = new byte [ s . Length ] ; for ( int k = r . Length - 1 ; k >= 0 ; k -- ) { char c = s [ k ] ; if ( c > 127 ) { throw new ArgumentException ( MessageFormat . Format ( JGitText . Get ( ) . notASCIIString , s ) ) ; } r [ k ] = unchecked ( ( byte ) c ) ; } return r ; }
|
public PurgeQueueResult purgeQueue ( PurgeQueueRequest request ) { request = beforeClientExecution ( request ) ; return executePurgeQueue ( request ) ; }
|
public virtual PurgeQueueResponse PurgeQueue ( PurgeQueueRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = PurgeQueueRequestMarshaller . Instance ; options . ResponseUnmarshaller = PurgeQueueResponseUnmarshaller . Instance ; return Invoke < PurgeQueueResponse > ( request , options ) ; }
|
public boolean sempred ( RuleContext _localctx , int ruleIndex , int actionIndex ) { return true ; }
|
public virtual bool Sempred ( RuleContext _localctx , int ruleIndex , int actionIndex ) { return true ; }
|
public ListStreamsResult listStreams ( ) { return listStreams ( new ListStreamsRequest ( ) ) ; }
|
public virtual ListStreamsResponse ListStreams ( ) { return ListStreams ( new ListStreamsRequest ( ) ) ; }
|
public String getSurfaceFormString ( ) { return new String ( surfaceForm , offset , length ) ; }
|
public virtual string GetSurfaceFormString ( ) { return new string ( surfaceForm , offset , length ) ; }
|
public GetVaultNotificationsResult getVaultNotifications ( GetVaultNotificationsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetVaultNotifications ( request ) ; }
|
public virtual GetVaultNotificationsResponse GetVaultNotifications ( GetVaultNotificationsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetVaultNotificationsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetVaultNotificationsResponseUnmarshaller . Instance ; return Invoke < GetVaultNotificationsResponse > ( request , options ) ; }
|
public DeleteTypedLinkFacetResult deleteTypedLinkFacet ( DeleteTypedLinkFacetRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteTypedLinkFacet ( request ) ; }
|
public virtual DeleteTypedLinkFacetResponse DeleteTypedLinkFacet ( DeleteTypedLinkFacetRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteTypedLinkFacetRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteTypedLinkFacetResponseUnmarshaller . Instance ; return Invoke < DeleteTypedLinkFacetResponse > ( request , options ) ; }
|
public int previousIndex ( ) { return pos ; }
|
public int previousIndex ( ) { return this . pos ; }
|
public long ramBytesUsed ( ) { return super . ramBytesUsed ( ) + offsets . ramBytesUsed ( ) + lengths . ramBytesUsed ( ) + RamUsageEstimator . NUM_BYTES_OBJECT_HEADER + 2 * Integer . BYTES + 3 * RamUsageEstimator . NUM_BYTES_OBJECT_REF + values . bytes ( ) . length ; }
|
public long RamBytesUsed ( ) { return RamUsageEstimator . AlignObjectSize ( 3 * RamUsageEstimator . NUM_BYTES_OBJECT_REF ) + docIDs . RamBytesUsed ( ) + offsets . RamBytesUsed ( ) ; }
|
public PushCommand push ( ) { return new PushCommand ( repo ) ; }
|
public virtual PushCommand Push ( ) { return new PushCommand ( repo ) ; }
|
public SelectResult select ( SelectRequest request ) { request = beforeClientExecution ( request ) ; return executeSelect ( request ) ; }
|
public virtual SelectResponse Select ( SelectRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SelectRequestMarshaller . Instance ; options . ResponseUnmarshaller = SelectResponseUnmarshaller . Instance ; return Invoke < SelectResponse > ( request , options ) ; }
|
public ByteArrayDataOutput ( byte [ ] bytes ) { reset ( bytes ) ; }
|
public ByteArrayDataOutput ( byte [ ] bytes ) { Reset ( bytes ) ; }
|
public boolean renameTo ( String newName ) { return directory . renameTo ( newName ) ; }
|
public bool RenameTo ( string newName ) { return directory . RenameTo ( newName ) ; }
|
public boolean canReuse ( IndexInput docIn , FieldInfo fieldInfo ) { return docIn == startDocIn && indexHasOffsets == ( fieldInfo . getIndexOptions ( ) . compareTo ( IndexOptions . DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS ) >= 0 ) && indexHasPayloads == fieldInfo . hasPayloads ( ) ; }
|
public bool CanReuse ( IndexInput docIn , FieldInfo fieldInfo ) { return docIn == startDocIn && indexHasOffsets == ( fieldInfo . IndexOptions . CompareTo ( IndexOptions . DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS ) >= 0 ) && indexHasPayloads == fieldInfo . HasPayloads ; }
|
public boolean equals ( Object o ) { return o instanceof DanishStemmer ; }
|
public override bool Equals ( object o ) { return o is DanishStemmer ; }
|
public BooleanQuery build ( QueryNode queryNode ) throws QueryNodeException { BooleanQueryNode booleanNode = ( BooleanQueryNode ) queryNode ; BooleanQuery . Builder bQuery = new BooleanQuery . Builder ( ) ; List < QueryNode > children = booleanNode . getChildren ( ) ; if ( children != null ) { for ( QueryNode child : children ) { Object obj = child . getTag ( QueryTreeBuilder . QUERY_TREE_BUILDER_TAGID ) ; if ( obj != null ) { Query query = ( Query ) obj ; try { bQuery . add ( query , getModifierValue ( child ) ) ; } catch ( TooManyClauses ex ) { throw new QueryNodeException ( new MessageImpl ( QueryParserMessages . TOO_MANY_BOOLEAN_CLAUSES , IndexSearcher . getMaxClauseCount ( ) , queryNode . toQueryString ( new EscapeQuerySyntaxImpl ( ) ) ) , ex ) ; } } } } return bQuery . build ( ) ; }
|
public virtual Query Build ( IQueryNode queryNode ) { BooleanQueryNode booleanNode = ( BooleanQueryNode ) queryNode ; BooleanQuery bQuery = new BooleanQuery ( ) ; IList < IQueryNode > children = booleanNode . GetChildren ( ) ; if ( children != null ) { foreach ( IQueryNode child in children ) { object obj = child . GetTag ( QueryTreeBuilder . QUERY_TREE_BUILDER_TAGID ) ; if ( obj != null ) { Query query = ( Query ) obj ; try { bQuery . Add ( query , GetModifierValue ( child ) ) ; } catch ( BooleanQuery . TooManyClausesException ex ) { throw new QueryNodeException ( new Message ( QueryParserMessages . TOO_MANY_BOOLEAN_CLAUSES , BooleanQuery . MaxClauseCount , queryNode . ToQueryString ( new EscapeQuerySyntax ( ) ) ) , ex ) ; } } } } return bQuery ; }
|
public String getName ( ) { return name ; }
|
public virtual string GetName ( ) { return name ; }
|
public List < TerminalNode > getTokens ( int ttype ) { if ( children == null ) { return Collections . emptyList ( ) ; } List < TerminalNode > tokens = null ; for ( ParseTree o : children ) { if ( o instanceof TerminalNode ) { TerminalNode tnode = ( TerminalNode ) o ; Token symbol = tnode . getSymbol ( ) ; if ( symbol . getType ( ) == ttype ) { if ( tokens == null ) { tokens = new ArrayList < TerminalNode > ( ) ; } tokens . add ( tnode ) ; } } } if ( tokens == null ) { return Collections . emptyList ( ) ; } return tokens ; }
|
public virtual ITerminalNode [ ] GetTokens ( int ttype ) { if ( children == null ) { return Collections . EmptyList < ITerminalNode > ( ) ; } List < ITerminalNode > tokens = null ; foreach ( IParseTree o in children ) { if ( o is ITerminalNode ) { ITerminalNode tnode = ( ITerminalNode ) o ; IToken symbol = tnode . Symbol ; if ( symbol . Type == ttype ) { if ( tokens == null ) { tokens = new List < ITerminalNode > ( ) ; } tokens . Add ( tnode ) ; } } } if ( tokens == null ) { return Collections . EmptyList < ITerminalNode > ( ) ; } return tokens ; }
|
public UpdateApnsChannelResult updateApnsChannel ( UpdateApnsChannelRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateApnsChannel ( request ) ; }
|
public virtual UpdateApnsChannelResponse UpdateApnsChannel ( UpdateApnsChannelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateApnsChannelRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateApnsChannelResponseUnmarshaller . Instance ; return Invoke < UpdateApnsChannelResponse > ( request , options ) ; }
|
public String getInput ( ) { return input ; }
|
public virtual string getInput ( ) { return input ; }
|
public int serialize ( int offset , byte [ ] data , EscherSerializationListener listener ) { listener . beforeRecordSerialize ( offset , getRecordId ( ) , this ) ; LittleEndian . putShort ( data , offset , getOptions ( ) ) ; LittleEndian . putShort ( data , offset + 2 , getRecordId ( ) ) ; LittleEndian . putInt ( data , offset + 4 , getRecordSize ( ) - HEADER_SIZE ) ; int pos = offset + HEADER_SIZE ; System . arraycopy ( field_1_UID , 0 , data , pos , 16 ) ; data [ pos + 16 ] = field_2_marker ; byte [ ] pd = getPicturedata ( ) ; System . arraycopy ( pd , 0 , data , pos + 17 , pd . length ) ; listener . afterRecordSerialize ( offset + getRecordSize ( ) , getRecordId ( ) , getRecordSize ( ) , this ) ; return HEADER_SIZE + 16 + 1 + pd . length ; }
|
public override int Serialize ( int offset , byte [ ] data , EscherSerializationListener listener ) { listener . BeforeRecordSerialize ( offset , RecordId , this ) ; LittleEndian . PutShort ( data , offset , Options ) ; LittleEndian . PutShort ( data , offset + 2 , RecordId ) ; LittleEndian . PutInt ( data , offset + 4 , RecordSize - HEADER_SIZE ) ; int pos = offset + HEADER_SIZE ; Array . Copy ( field_1_UID , 0 , data , pos , 16 ) ; data [ pos + 16 ] = field_2_marker ; Array . Copy ( field_pictureData , 0 , data , pos + 17 , field_pictureData . Length ) ; listener . AfterRecordSerialize ( offset + RecordSize , RecordId , RecordSize , this ) ; return HEADER_SIZE + 16 + 1 + field_pictureData . Length ; }
|
public DescribeFolderContentsResult describeFolderContents ( DescribeFolderContentsRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeFolderContents ( request ) ; }
|
public virtual DescribeFolderContentsResponse DescribeFolderContents ( DescribeFolderContentsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeFolderContentsRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeFolderContentsResponseUnmarshaller . Instance ; return Invoke < DescribeFolderContentsResponse > ( request , options ) ; }
|
public CreateDBInstanceReadReplicaRequest ( String dBInstanceIdentifier , String sourceDBInstanceIdentifier ) { setDBInstanceIdentifier ( dBInstanceIdentifier ) ; setSourceDBInstanceIdentifier ( sourceDBInstanceIdentifier ) ; }
|
public CreateDBInstanceReadReplicaRequest ( string dbInstanceIdentifier , string sourceDBInstanceIdentifier ) { _dbInstanceIdentifier = dbInstanceIdentifier ; _sourceDBInstanceIdentifier = sourceDBInstanceIdentifier ; }
|
public DVRecord clone ( ) { return copy ( ) ; }
|
public override Object Clone ( ) { return CloneViaReserialise ( ) ; }
|
public CreateDefaultSubnetResult createDefaultSubnet ( CreateDefaultSubnetRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateDefaultSubnet ( request ) ; }
|
public virtual CreateDefaultSubnetResponse CreateDefaultSubnet ( CreateDefaultSubnetRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateDefaultSubnetRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateDefaultSubnetResponseUnmarshaller . Instance ; return Invoke < CreateDefaultSubnetResponse > ( request , options ) ; }
|
public AbbreviatedObjectId getNewId ( ) { return newId ; }
|
public virtual AbbreviatedObjectId GetNewId ( ) { return newId ; }
|
public final V setValue ( V value ) { V oldValue = this . value ; this . value = value ; return oldValue ; }
|
public virtual V setValue ( V value ) { V oldValue = this . value ; this . value = value ; return oldValue ; }
|
public int get ( String name , int dflt ) { int vals [ ] = ( int [ ] ) valByRound . get ( name ) ; if ( vals != null ) { return vals [ roundNumber % vals . length ] ; } String sval = props . getProperty ( name , "" + dflt ) ; if ( sval . indexOf ( ":" ) < 0 ) { return Integer . parseInt ( sval ) ; } int k = sval . indexOf ( ":" ) ; String colName = sval . substring ( 0 , k ) ; sval = sval . substring ( k + 1 ) ; colForValByRound . put ( name , colName ) ; vals = propToIntArray ( sval ) ; valByRound . put ( name , vals ) ; return vals [ roundNumber % vals . length ] ; }
|
public virtual string Get ( string name , string dflt ) { string [ ] vals ; object temp ; if ( valByRound . TryGetValue ( name , out temp ) && temp != null ) { vals = ( string [ ] ) temp ; return vals [ roundNumber % vals . Length ] ; } string sval ; if ( ! props . TryGetValue ( name , out sval ) ) { sval = dflt ; } if ( sval == null ) { return null ; } if ( sval . IndexOf ( ':' ) < 0 ) { return sval ; } else if ( sval . IndexOf ( ":\\" , StringComparison . Ordinal ) >= 0 || sval . IndexOf ( ":/" , StringComparison . Ordinal ) >= 0 ) { return sval ; } int k = sval . IndexOf ( ':' ) ; string colName = sval . Substring ( 0 , k - 0 ) ; sval = sval . Substring ( k + 1 ) ; colForValByRound [ name ] = colName ; vals = PropToStringArray ( sval ) ; valByRound [ name ] = vals ; return vals [ roundNumber % vals . Length ] ; }
|
public String toString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . append ( "extBook=" ) . append ( _extBookIndex ) ; buffer . append ( " firstSheet=" ) . append ( _firstSheetIndex ) ; buffer . append ( " lastSheet=" ) . append ( _lastSheetIndex ) ; return buffer . toString ( ) ; }
|
public override String ToString ( ) { StringBuilder buffer = new StringBuilder ( ) ; buffer . Append ( "extBook=" ) . Append ( _extBookIndex ) ; buffer . Append ( " firstSheet=" ) . Append ( _firstSheetIndex ) ; buffer . Append ( " lastSheet=" ) . Append ( _lastSheetIndex ) ; return buffer . ToString ( ) ; }
|
public void write ( LittleEndianOutput out ) { out . writeByte ( sid + getPtgClass ( ) ) ; out . writeInt ( field_1_reserved ) ; out . writeShort ( field_2_subex_len ) ; }
|
public override void Write ( ILittleEndianOutput out1 ) { out1 . WriteByte ( sid + PtgClass ) ; out1 . WriteInt ( field_1_reserved ) ; out1 . WriteShort ( field_2_subex_len ) ; }
|
public final Buffer rewind ( ) { position = 0 ; mark = UNSET_MARK ; return this ; }
|
public java . nio . Buffer rewind ( ) { _position = 0 ; _mark = UNSET_MARK ; return this ; }
|
public short getHideObj ( ) { return field_1_hide_obj ; }
|
public short GetHideObj ( ) { return field_1_hide_obj ; }
|
public PrintGridlinesRecord ( RecordInputStream in ) { field_1_print_gridlines = in . readShort ( ) ; }
|
public PrintGridlinesRecord ( RecordInputStream in1 ) { field_1_print_gridlines = in1 . ReadShort ( ) ; }
|
public CreateEventTrackerResult createEventTracker ( CreateEventTrackerRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateEventTracker ( request ) ; }
|
public virtual CreateEventTrackerResponse CreateEventTracker ( CreateEventTrackerRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateEventTrackerRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateEventTrackerResponseUnmarshaller . Instance ; return Invoke < CreateEventTrackerResponse > ( request , options ) ; }
|
public boolean hasNext ( ) { return index < to ; }
|
public virtual bool hasNext ( ) { return index < to ; }
|
public void removeExFormatRecord ( ExtendedFormatRecord rec ) { records . remove ( rec ) ; numxfs -- ; }
|
public void RemoveExFormatRecord ( ExtendedFormatRecord rec ) { records . Remove ( rec ) ; numxfs -- ; }
|
public synchronized void publish ( Revision revision ) throws IOException { ensureOpen ( ) ; if ( currentRevision != null ) { int compare = revision . compareTo ( currentRevision . revision ) ; if ( compare == 0 ) { revision . release ( ) ; return ; } if ( compare < 0 ) { revision . release ( ) ; throw new IllegalArgumentException ( "Cannot publish an older revision: rev=" + revision + " current=" + currentRevision ) ; } } final RefCountedRevision oldRevision = currentRevision ; currentRevision = new RefCountedRevision ( revision ) ; if ( oldRevision != null ) { oldRevision . decRef ( ) ; } checkExpiredSessions ( ) ; }
|
public virtual void Publish ( IRevision revision ) { lock ( padlock ) { EnsureOpen ( ) ; if ( currentRevision != null ) { int compare = revision . CompareTo ( currentRevision . Revision ) ; if ( compare == 0 ) { revision . Release ( ) ; return ; } if ( compare < 0 ) { revision . Release ( ) ; throw new ArgumentException ( string . Format ( "Cannot publish an older revision: rev={0} current={1}" , revision , currentRevision ) , "revision" ) ; } } RefCountedRevision oldRevision = currentRevision ; currentRevision = new RefCountedRevision ( revision ) ; if ( oldRevision != null ) oldRevision . DecRef ( ) ; CheckExpiredSessions ( ) ; } }
|
public final boolean equals ( AnyObjectId other ) { return other != null ? isEqual ( this , other ) : false ; }
|
public bool Equals ( AnyObjectId other ) { return other != null ? Equals ( this , other ) : false ; }
|
public DeleteBGPPeerResult deleteBGPPeer ( DeleteBGPPeerRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteBGPPeer ( request ) ; }
|
public virtual DeleteBGPPeerResponse DeleteBGPPeer ( DeleteBGPPeerRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteBGPPeerRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteBGPPeerResponseUnmarshaller . Instance ; return Invoke < DeleteBGPPeerResponse > ( request , options ) ; }
|
public String toString ( ) { return "I(n)" ; }
|
public override string ToString ( ) { return "I(n)" ; }
|
public DeleteVpcPeeringConnectionResult deleteVpcPeeringConnection ( DeleteVpcPeeringConnectionRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteVpcPeeringConnection ( request ) ; }
|
public virtual DeleteVpcPeeringConnectionResponse DeleteVpcPeeringConnection ( DeleteVpcPeeringConnectionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteVpcPeeringConnectionRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteVpcPeeringConnectionResponseUnmarshaller . Instance ; return Invoke < DeleteVpcPeeringConnectionResponse > ( request , options ) ; }
|
public UpdateIdentityPoolResult updateIdentityPool ( UpdateIdentityPoolRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateIdentityPool ( request ) ; }
|
public virtual UpdateIdentityPoolResponse UpdateIdentityPool ( UpdateIdentityPoolRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateIdentityPoolRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateIdentityPoolResponseUnmarshaller . Instance ; return Invoke < UpdateIdentityPoolResponse > ( request , options ) ; }
|
public String signString ( String stringToSign , AlibabaCloudCredentials credentials ) { return signString ( stringToSign , credentials . getAccessKeySecret ( ) ) ; }
|
public override string SignString ( string stringToSign , AlibabaCloudCredentials credentials ) { return SignString ( stringToSign , credentials . GetAccessKeySecret ( ) ) ; }
|
public GetDeviceResult getDevice ( GetDeviceRequest request ) { request = beforeClientExecution ( request ) ; return executeGetDevice ( request ) ; }
|
public virtual GetDeviceResponse GetDevice ( GetDeviceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetDeviceRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetDeviceResponseUnmarshaller . Instance ; return Invoke < GetDeviceResponse > ( request , options ) ; }
|
public void writeInt ( int v ) { writeContinueIfRequired ( 4 ) ; _ulrOutput . writeInt ( v ) ; }
|
public void WriteInt ( int v ) { _out . WriteInt ( v ) ; _size += 4 ; }
|
public boolean isSuccess ( ) { return 200 <= this . status && this . status < 300 ; }
|
public bool isSuccess ( ) { return 200 <= Status && 300 > Status ; }
|
public static CredentialsProvider getDefault ( ) { return defaultProvider ; }
|
public static CredentialsProvider GetDefault ( ) { return defaultProvider ; }
|
public boolean equals ( Object obj ) { if ( obj == this ) { return true ; } else if ( ! ( obj instanceof LexerPushModeAction ) ) { return false ; } return mode == ( ( LexerPushModeAction ) obj ) . mode ; }
|
public override bool Equals ( object obj ) { if ( obj == this ) { return true ; } else { if ( ! ( obj is Antlr4 . Runtime . Atn . LexerPushModeAction ) ) { return false ; } } return mode == ( ( Antlr4 . Runtime . Atn . LexerPushModeAction ) obj ) . mode ; }
|
public void dumpDFA ( ) { synchronized ( _interp . decisionToDFA ) { boolean seenOne = false ; for ( int d = 0 ; d < _interp . decisionToDFA . length ; d ++ ) { DFA dfa = _interp . decisionToDFA [ d ] ; if ( ! dfa . states . isEmpty ( ) ) { if ( seenOne ) System . out . println ( ) ; System . out . println ( "Decision " + dfa . decision + ":" ) ; System . out . print ( dfa . toString ( getVocabulary ( ) ) ) ; seenOne = true ; } } } }
|
public virtual void DumpDFA ( ) { bool seenOne = false ; for ( int d = 0 ; d < Interpreter . decisionToDFA . Length ; d ++ ) { DFA dfa = Interpreter . decisionToDFA [ d ] ; if ( dfa . states . Count > 0 ) { if ( seenOne ) { Output . WriteLine ( ) ; } Output . WriteLine ( "Decision " + dfa . decision + ":" ) ; Output . Write ( dfa . ToString ( Vocabulary ) ) ; seenOne = true ; } } }
|
public FloatBuffer put ( int index , float c ) { throw new ReadOnlyBufferException ( ) ; }
|
public override java . nio . FloatBuffer put ( int index , float c ) { throw new java . nio . ReadOnlyBufferException ( ) ; }
|
public CancelClusterResult cancelCluster ( CancelClusterRequest request ) { request = beforeClientExecution ( request ) ; return executeCancelCluster ( request ) ; }
|
public virtual CancelClusterResponse CancelCluster ( CancelClusterRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CancelClusterRequestMarshaller . Instance ; options . ResponseUnmarshaller = CancelClusterResponseUnmarshaller . Instance ; return Invoke < CancelClusterResponse > ( request , options ) ; }
|
public DeleteSnapshotResult deleteSnapshot ( DeleteSnapshotRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteSnapshot ( request ) ; }
|
public virtual DeleteSnapshotResponse DeleteSnapshot ( DeleteSnapshotRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteSnapshotRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteSnapshotResponseUnmarshaller . Instance ; return Invoke < DeleteSnapshotResponse > ( request , options ) ; }
|
public DeletePhoneNumberResult deletePhoneNumber ( DeletePhoneNumberRequest request ) { request = beforeClientExecution ( request ) ; return executeDeletePhoneNumber ( request ) ; }
|
public virtual DeletePhoneNumberResponse DeletePhoneNumber ( DeletePhoneNumberRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeletePhoneNumberRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeletePhoneNumberResponseUnmarshaller . Instance ; return Invoke < DeletePhoneNumberResponse > ( request , options ) ; }
|
public boolean addPushURI ( URIish toAdd ) { if ( pushURIs . contains ( toAdd ) ) return false ; return pushURIs . add ( toAdd ) ; }
|
public virtual bool AddPushURI ( URIish toAdd ) { if ( pushURIs . Contains ( toAdd ) ) { return false ; } return pushURIs . AddItem ( toAdd ) ; }
|
public BytesRef next ( ) throws IOException { boolean success = false ; try { scratch = reader . next ( ) ; if ( scratch == null ) { reader . close ( ) ; } success = true ; return scratch ; } finally { if ( ! success ) { IOUtils . closeWhileHandlingException ( reader ) ; } } }
|
public virtual BytesRef Next ( ) { if ( scratch == null ) { return null ; } bool success = false ; try { byte [ ] next = reader . Read ( ) ; if ( next != null ) { scratch . Bytes = next ; scratch . Length = next . Length ; scratch . Offset = 0 ; } else { IOUtils . Dispose ( reader ) ; scratch = null ; } success = true ; return scratch ; } finally { if ( ! success ) { IOUtils . DisposeWhileHandlingException ( reader ) ; } } }
|
public void removeCreateDateTime ( ) { remove1stProperty ( PropertyIDMap . PID_CREATE_DTM ) ; }
|
public void RemoveCreateDateTime ( ) { MutableSection s = ( MutableSection ) FirstSection ; s . RemoveProperty ( PropertyIDMap . PID_Create_DTM ) ; }
|
public CreateHealthCheckResult createHealthCheck ( CreateHealthCheckRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateHealthCheck ( request ) ; }
|
public virtual CreateHealthCheckResponse CreateHealthCheck ( CreateHealthCheckRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateHealthCheckRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateHealthCheckResponseUnmarshaller . Instance ; return Invoke < CreateHealthCheckResponse > ( request , options ) ; }
|
public EnableVgwRoutePropagationResult enableVgwRoutePropagation ( EnableVgwRoutePropagationRequest request ) { request = beforeClientExecution ( request ) ; return executeEnableVgwRoutePropagation ( request ) ; }
|
public virtual EnableVgwRoutePropagationResponse EnableVgwRoutePropagation ( EnableVgwRoutePropagationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = EnableVgwRoutePropagationRequestMarshaller . Instance ; options . ResponseUnmarshaller = EnableVgwRoutePropagationResponseUnmarshaller . Instance ; return Invoke < EnableVgwRoutePropagationResponse > ( request , options ) ; }
|
public void removeByteCount ( ) { remove1stProperty ( PropertyIDMap . PID_BYTECOUNT ) ; }
|
public void RemoveByteCount ( ) { MutableSection s = ( MutableSection ) FirstSection ; s . RemoveProperty ( PropertyIDMap . PID_BYTECOUNT ) ; }
|
public UpdateAutoScalingGroupResult updateAutoScalingGroup ( UpdateAutoScalingGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateAutoScalingGroup ( request ) ; }
|
public virtual UpdateAutoScalingGroupResponse UpdateAutoScalingGroup ( UpdateAutoScalingGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateAutoScalingGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateAutoScalingGroupResponseUnmarshaller . Instance ; return Invoke < UpdateAutoScalingGroupResponse > ( request , options ) ; }
|
public CreateNotebookInstanceResult createNotebookInstance ( CreateNotebookInstanceRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateNotebookInstance ( request ) ; }
|
public virtual CreateNotebookInstanceResponse CreateNotebookInstance ( CreateNotebookInstanceRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateNotebookInstanceRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateNotebookInstanceResponseUnmarshaller . Instance ; return Invoke < CreateNotebookInstanceResponse > ( request , options ) ; }
|
public AllocateAddressResult allocateAddress ( ) { return allocateAddress ( new AllocateAddressRequest ( ) ) ; }
|
public virtual AllocateAddressResponse AllocateAddress ( ) { return AllocateAddress ( new AllocateAddressRequest ( ) ) ; }
|
public CreateMLModelResult createMLModel ( CreateMLModelRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateMLModel ( request ) ; }
|
public virtual CreateMLModelResponse CreateMLModel ( CreateMLModelRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateMLModelRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateMLModelResponseUnmarshaller . Instance ; return Invoke < CreateMLModelResponse > ( request , options ) ; }
|
public ContinueRecord ( byte [ ] data ) { _data = data . clone ( ) ; }
|
public ContinueRecord ( byte [ ] data ) { field_1_data = data ; }
|
public Parser getParser ( ) { return parser ; }
|
public Parser getParser ( ) { return parser ; }
|
public DeleteSolutionResult deleteSolution ( DeleteSolutionRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteSolution ( request ) ; }
|
public virtual DeleteSolutionResponse DeleteSolution ( DeleteSolutionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteSolutionRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteSolutionResponseUnmarshaller . Instance ; return Invoke < DeleteSolutionResponse > ( request , options ) ; }
|
public boolean isDelete ( ) { return ObjectId . zeroId ( ) . equals ( newObjectId ) ; }
|
public virtual bool IsDelete ( ) { return ObjectId . ZeroId . Equals ( newObjectId ) ; }
|
public int getNextPos ( ) { return nextPos ; }
|
public int GetNextPos ( ) { return nextPos ; }
|
public DescribeSpotFleetInstancesResult describeSpotFleetInstances ( DescribeSpotFleetInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeSpotFleetInstances ( request ) ; }
|
public virtual DescribeSpotFleetInstancesResponse DescribeSpotFleetInstances ( DescribeSpotFleetInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeSpotFleetInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeSpotFleetInstancesResponseUnmarshaller . Instance ; return Invoke < DescribeSpotFleetInstancesResponse > ( request , options ) ; }
|
public ResetPasswordResult resetPassword ( ResetPasswordRequest request ) { request = beforeClientExecution ( request ) ; return executeResetPassword ( request ) ; }
|
public virtual ResetPasswordResponse ResetPassword ( ResetPasswordRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ResetPasswordRequestMarshaller . Instance ; options . ResponseUnmarshaller = ResetPasswordResponseUnmarshaller . Instance ; return Invoke < ResetPasswordResponse > ( request , options ) ; }
|
public String toString ( ) { return "DrawingRecord[" + recordData . length + "]" ; }
|
public override String ToString ( ) { return "DrawingRecord[" + recordData . Length + "]" ; }
|
public Status call ( ) throws GitAPIException , NoWorkTreeException { if ( workingTreeIt == null ) workingTreeIt = new FileTreeIterator ( repo ) ; try { IndexDiff diff = new IndexDiff ( repo , Constants . HEAD , workingTreeIt ) ; if ( ignoreSubmoduleMode != null ) diff . setIgnoreSubmoduleMode ( ignoreSubmoduleMode ) ; if ( paths != null ) diff . setFilter ( PathFilterGroup . createFromStrings ( paths ) ) ; if ( progressMonitor == null ) diff . diff ( ) ; elsediff . diff ( progressMonitor , ProgressMonitor . UNKNOWN , ProgressMonitor . UNKNOWN , "" ) ; return new Status ( diff ) ; } catch ( IOException e ) { throw new JGitInternalException ( e . getMessage ( ) , e ) ; } }
|
public override Status Call ( ) { if ( workingTreeIt == null ) { workingTreeIt = new FileTreeIterator ( repo ) ; } try { IndexDiff diff = new IndexDiff ( repo , Constants . HEAD , workingTreeIt ) ; diff . Diff ( ) ; return new Status ( diff ) ; } catch ( IOException e ) { throw new JGitInternalException ( e . Message , e ) ; } }
|
public PathHierarchyTokenizerFactory ( Map < String , String > args ) { super ( args ) ; delimiter = getChar ( args , "delimiter" , PathHierarchyTokenizer . DEFAULT_DELIMITER ) ; replacement = getChar ( args , "replace" , delimiter ) ; reverse = getBoolean ( args , "reverse" , false ) ; skip = getInt ( args , "skip" , PathHierarchyTokenizer . DEFAULT_SKIP ) ; if ( ! args . isEmpty ( ) ) { throw new IllegalArgumentException ( "Unknown parameters: " + args ) ; } }
|
public PathHierarchyTokenizerFactory ( IDictionary < string , string > args ) : base ( args ) { delimiter = GetChar ( args , "delimiter" , PathHierarchyTokenizer . DEFAULT_DELIMITER ) ; replacement = GetChar ( args , "replace" , delimiter ) ; reverse = GetBoolean ( args , "reverse" , false ) ; skip = GetInt32 ( args , "skip" , PathHierarchyTokenizer . DEFAULT_SKIP ) ; if ( args . Count > 0 ) { throw new System . ArgumentException ( "Unknown parameters: " + args ) ; } }
|
public String toString ( ) { return super . toString ( ) + ": " + lockName ; }
|
public override string ToString ( ) { return base . ToString ( ) + ": " + lockName ; }
|
public CreateFieldLevelEncryptionConfigResult createFieldLevelEncryptionConfig ( CreateFieldLevelEncryptionConfigRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateFieldLevelEncryptionConfig ( request ) ; }
|
public virtual CreateFieldLevelEncryptionConfigResponse CreateFieldLevelEncryptionConfig ( CreateFieldLevelEncryptionConfigRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateFieldLevelEncryptionConfigRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateFieldLevelEncryptionConfigResponseUnmarshaller . Instance ; return Invoke < CreateFieldLevelEncryptionConfigResponse > ( request , options ) ; }
|
public Reader reader ( ) { return reader ; }
|
public java . io . Reader reader ( ) { return _reader ; }
|
public DeleteHealthCheckResult deleteHealthCheck ( DeleteHealthCheckRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteHealthCheck ( request ) ; }
|
public virtual DeleteHealthCheckResponse DeleteHealthCheck ( DeleteHealthCheckRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteHealthCheckRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteHealthCheckResponseUnmarshaller . Instance ; return Invoke < DeleteHealthCheckResponse > ( request , options ) ; }
|
public long get ( ) { return count ; }
|
public override long Get ( ) { return count ; }
|
public int setArrayData ( byte [ ] data , int offset ) { if ( emptyComplexPart ) { resizeComplexData ( 0 ) ; } else { short numElements = LittleEndian . getShort ( data , offset ) ; short sizeOfElements = LittleEndian . getShort ( data , offset + 4 ) ; int cdLen = getComplexData ( ) . length ; int arraySize = getActualSizeOfElements ( sizeOfElements ) * numElements ; if ( arraySize == cdLen ) { resizeComplexData ( arraySize + 6 , 0 ) ; sizeIncludesHeaderSize = false ; } setComplexData ( data , offset ) ; } return getComplexData ( ) . length ; }
|
public int SetArrayData ( byte [ ] data , int offset ) { if ( emptyComplexPart ) { _complexData = new byte [ 0 ] ; } else { short numElements = LittleEndian . GetShort ( data , offset ) ; short numReserved = LittleEndian . GetShort ( data , offset + 2 ) ; short sizeOfElements = LittleEndian . GetShort ( data , offset + 4 ) ; int arraySize = GetActualSizeOfElements ( sizeOfElements ) * numElements ; if ( arraySize == _complexData . Length ) { _complexData = new byte [ arraySize + 6 ] ; sizeIncludesHeaderSize = false ; } Array . Copy ( data , offset , _complexData , 0 , _complexData . Length ) ; } return _complexData . Length ; }
|
public ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 ) { TwoDEval reference = convertFirstArg ( arg0 ) ; int columnIx = 0 ; try { int rowIx = resolveIndexArg ( arg1 , srcRowIndex , srcColumnIndex ) ; if ( ! reference . isColumn ( ) ) { if ( ! reference . isRow ( ) ) { return ErrorEval . REF_INVALID ; } columnIx = rowIx ; rowIx = 0 ; } return getValueFromArea ( reference , rowIx , columnIx ) ; } catch ( EvaluationException e ) { return e . getErrorEval ( ) ; } }
|
public ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 , ValueEval arg1 ) { TwoDEval reference = ConvertFirstArg ( arg0 ) ; int columnIx = 0 ; try { int rowIx = ResolveIndexArg ( arg1 , srcRowIndex , srcColumnIndex ) ; if ( ! reference . IsColumn ) { if ( ! reference . IsRow ) { return ErrorEval . REF_INVALID ; } columnIx = rowIx ; rowIx = 0 ; } return GetValueFromArea ( reference , rowIx , columnIx ) ; } catch ( EvaluationException e ) { return e . GetErrorEval ( ) ; } }
|
public boolean seekExact ( BytesRef term ) throws IOException { throw new UnsupportedOperationException ( getClass ( ) . getName ( ) + " does not support seeking" ) ; }
|
public override bool SeekExact ( BytesRef term ) { throw new System . NotSupportedException ( this . GetType ( ) . Name + " does not support seeking" ) ; }
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.