mocks

package
v1.16.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 10, 2026 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AsyncClient

type AsyncClient struct {
	mock.Mock
}

AsyncClient is an autogenerated mock type for the AsyncClient type

func NewAsyncClient added in v1.15.1

func NewAsyncClient(t interface {
	mock.TestingT
	Cleanup(func())
}) *AsyncClient

NewAsyncClient creates a new instance of AsyncClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*AsyncClient) Download

func (_m *AsyncClient) Download(ctx context.Context, requests ...catalog.DownloadRequest) (catalog.DownloadFuture, error)

Download provides a mock function with given fields: ctx, requests

func (*AsyncClient) EXPECT added in v1.15.1

func (_m *AsyncClient) EXPECT() *AsyncClient_Expecter

func (*AsyncClient) Upload

func (_m *AsyncClient) Upload(ctx context.Context, requests ...catalog.UploadRequest) (catalog.UploadFuture, error)

Upload provides a mock function with given fields: ctx, requests

type AsyncClient_Download_Call added in v1.15.1

type AsyncClient_Download_Call struct {
	*mock.Call
}

AsyncClient_Download_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Download'

func (*AsyncClient_Download_Call) Return added in v1.15.1

func (*AsyncClient_Download_Call) Run added in v1.15.1

func (*AsyncClient_Download_Call) RunAndReturn added in v1.15.1

type AsyncClient_Expecter added in v1.15.1

type AsyncClient_Expecter struct {
	// contains filtered or unexported fields
}

func (*AsyncClient_Expecter) Download added in v1.15.1

func (_e *AsyncClient_Expecter) Download(ctx interface{}, requests ...interface{}) *AsyncClient_Download_Call

Download is a helper method to define mock.On call

  • ctx context.Context
  • requests ...catalog.DownloadRequest

func (*AsyncClient_Expecter) Upload added in v1.15.1

func (_e *AsyncClient_Expecter) Upload(ctx interface{}, requests ...interface{}) *AsyncClient_Upload_Call

Upload is a helper method to define mock.On call

  • ctx context.Context
  • requests ...catalog.UploadRequest

type AsyncClient_Upload_Call added in v1.15.1

type AsyncClient_Upload_Call struct {
	*mock.Call
}

AsyncClient_Upload_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Upload'

func (*AsyncClient_Upload_Call) Return added in v1.15.1

func (*AsyncClient_Upload_Call) Run added in v1.15.1

func (*AsyncClient_Upload_Call) RunAndReturn added in v1.15.1

type Client

type Client struct {
	mock.Mock
}

Client is an autogenerated mock type for the Client type

func NewClient added in v1.15.1

func NewClient(t interface {
	mock.TestingT
	Cleanup(func())
}) *Client

NewClient creates a new instance of Client. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*Client) EXPECT added in v1.15.1

func (_m *Client) EXPECT() *Client_Expecter

func (*Client) Get

func (_m *Client) Get(ctx context.Context, key catalog.Key) (catalog.Entry, error)

Get provides a mock function with given fields: ctx, key

func (*Client) GetOrExtendReservation

func (_m *Client) GetOrExtendReservation(ctx context.Context, key catalog.Key, ownerID string, heartbeatInterval time.Duration) (*datacatalog.Reservation, error)

GetOrExtendReservation provides a mock function with given fields: ctx, key, ownerID, heartbeatInterval

func (*Client) Put

func (_m *Client) Put(ctx context.Context, key catalog.Key, reader io.OutputReader, metadata catalog.Metadata) (catalog.Status, error)

Put provides a mock function with given fields: ctx, key, reader, metadata

func (*Client) ReleaseReservation

func (_m *Client) ReleaseReservation(ctx context.Context, key catalog.Key, ownerID string) error

ReleaseReservation provides a mock function with given fields: ctx, key, ownerID

func (*Client) Update

func (_m *Client) Update(ctx context.Context, key catalog.Key, reader io.OutputReader, metadata catalog.Metadata) (catalog.Status, error)

Update provides a mock function with given fields: ctx, key, reader, metadata

type Client_Expecter added in v1.15.1

type Client_Expecter struct {
	// contains filtered or unexported fields
}

func (*Client_Expecter) Get added in v1.15.1

func (_e *Client_Expecter) Get(ctx interface{}, key interface{}) *Client_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • key catalog.Key

func (*Client_Expecter) GetOrExtendReservation added in v1.15.1

func (_e *Client_Expecter) GetOrExtendReservation(ctx interface{}, key interface{}, ownerID interface{}, heartbeatInterval interface{}) *Client_GetOrExtendReservation_Call

GetOrExtendReservation is a helper method to define mock.On call

  • ctx context.Context
  • key catalog.Key
  • ownerID string
  • heartbeatInterval time.Duration

func (*Client_Expecter) Put added in v1.15.1

func (_e *Client_Expecter) Put(ctx interface{}, key interface{}, reader interface{}, metadata interface{}) *Client_Put_Call

Put is a helper method to define mock.On call

  • ctx context.Context
  • key catalog.Key
  • reader io.OutputReader
  • metadata catalog.Metadata

func (*Client_Expecter) ReleaseReservation added in v1.15.1

func (_e *Client_Expecter) ReleaseReservation(ctx interface{}, key interface{}, ownerID interface{}) *Client_ReleaseReservation_Call

ReleaseReservation is a helper method to define mock.On call

  • ctx context.Context
  • key catalog.Key
  • ownerID string

func (*Client_Expecter) Update added in v1.15.1

func (_e *Client_Expecter) Update(ctx interface{}, key interface{}, reader interface{}, metadata interface{}) *Client_Update_Call

Update is a helper method to define mock.On call

  • ctx context.Context
  • key catalog.Key
  • reader io.OutputReader
  • metadata catalog.Metadata

type Client_GetOrExtendReservation_Call added in v1.15.1

type Client_GetOrExtendReservation_Call struct {
	*mock.Call
}

Client_GetOrExtendReservation_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOrExtendReservation'

func (*Client_GetOrExtendReservation_Call) Return added in v1.15.1

func (*Client_GetOrExtendReservation_Call) Run added in v1.15.1

func (_c *Client_GetOrExtendReservation_Call) Run(run func(ctx context.Context, key catalog.Key, ownerID string, heartbeatInterval time.Duration)) *Client_GetOrExtendReservation_Call

func (*Client_GetOrExtendReservation_Call) RunAndReturn added in v1.15.1

type Client_Get_Call added in v1.15.1

type Client_Get_Call struct {
	*mock.Call
}

Client_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*Client_Get_Call) Return added in v1.15.1

func (_c *Client_Get_Call) Return(_a0 catalog.Entry, _a1 error) *Client_Get_Call

func (*Client_Get_Call) Run added in v1.15.1

func (_c *Client_Get_Call) Run(run func(ctx context.Context, key catalog.Key)) *Client_Get_Call

func (*Client_Get_Call) RunAndReturn added in v1.15.1

func (_c *Client_Get_Call) RunAndReturn(run func(context.Context, catalog.Key) (catalog.Entry, error)) *Client_Get_Call

type Client_Put_Call added in v1.15.1

type Client_Put_Call struct {
	*mock.Call
}

Client_Put_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Put'

func (*Client_Put_Call) Return added in v1.15.1

func (_c *Client_Put_Call) Return(_a0 catalog.Status, _a1 error) *Client_Put_Call

func (*Client_Put_Call) Run added in v1.15.1

func (_c *Client_Put_Call) Run(run func(ctx context.Context, key catalog.Key, reader io.OutputReader, metadata catalog.Metadata)) *Client_Put_Call

func (*Client_Put_Call) RunAndReturn added in v1.15.1

type Client_ReleaseReservation_Call added in v1.15.1

type Client_ReleaseReservation_Call struct {
	*mock.Call
}

Client_ReleaseReservation_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReleaseReservation'

func (*Client_ReleaseReservation_Call) Return added in v1.15.1

func (*Client_ReleaseReservation_Call) Run added in v1.15.1

func (*Client_ReleaseReservation_Call) RunAndReturn added in v1.15.1

type Client_Update_Call added in v1.15.1

type Client_Update_Call struct {
	*mock.Call
}

Client_Update_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Update'

func (*Client_Update_Call) Return added in v1.15.1

func (*Client_Update_Call) Run added in v1.15.1

func (_c *Client_Update_Call) Run(run func(ctx context.Context, key catalog.Key, reader io.OutputReader, metadata catalog.Metadata)) *Client_Update_Call

func (*Client_Update_Call) RunAndReturn added in v1.15.1

type DownloadFuture

type DownloadFuture struct {
	mock.Mock
}

DownloadFuture is an autogenerated mock type for the DownloadFuture type

func NewDownloadFuture added in v1.15.1

func NewDownloadFuture(t interface {
	mock.TestingT
	Cleanup(func())
}) *DownloadFuture

NewDownloadFuture creates a new instance of DownloadFuture. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*DownloadFuture) EXPECT added in v1.15.1

func (*DownloadFuture) GetResponse

func (_m *DownloadFuture) GetResponse() (catalog.DownloadResponse, error)

GetResponse provides a mock function with no fields

func (*DownloadFuture) GetResponseError

func (_m *DownloadFuture) GetResponseError() error

GetResponseError provides a mock function with no fields

func (*DownloadFuture) GetResponseStatus

func (_m *DownloadFuture) GetResponseStatus() catalog.ResponseStatus

GetResponseStatus provides a mock function with no fields

func (*DownloadFuture) OnReady

func (_m *DownloadFuture) OnReady(handler catalog.ReadyHandler)

OnReady provides a mock function with given fields: handler

type DownloadFuture_Expecter added in v1.15.1

type DownloadFuture_Expecter struct {
	// contains filtered or unexported fields
}

func (*DownloadFuture_Expecter) GetResponse added in v1.15.1

GetResponse is a helper method to define mock.On call

func (*DownloadFuture_Expecter) GetResponseError added in v1.15.1

GetResponseError is a helper method to define mock.On call

func (*DownloadFuture_Expecter) GetResponseStatus added in v1.15.1

GetResponseStatus is a helper method to define mock.On call

func (*DownloadFuture_Expecter) OnReady added in v1.15.1

func (_e *DownloadFuture_Expecter) OnReady(handler interface{}) *DownloadFuture_OnReady_Call

OnReady is a helper method to define mock.On call

  • handler catalog.ReadyHandler

type DownloadFuture_GetResponseError_Call added in v1.15.1

type DownloadFuture_GetResponseError_Call struct {
	*mock.Call
}

DownloadFuture_GetResponseError_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponseError'

func (*DownloadFuture_GetResponseError_Call) Return added in v1.15.1

func (*DownloadFuture_GetResponseError_Call) Run added in v1.15.1

func (*DownloadFuture_GetResponseError_Call) RunAndReturn added in v1.15.1

type DownloadFuture_GetResponseStatus_Call added in v1.15.1

type DownloadFuture_GetResponseStatus_Call struct {
	*mock.Call
}

DownloadFuture_GetResponseStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponseStatus'

func (*DownloadFuture_GetResponseStatus_Call) Return added in v1.15.1

func (*DownloadFuture_GetResponseStatus_Call) Run added in v1.15.1

func (*DownloadFuture_GetResponseStatus_Call) RunAndReturn added in v1.15.1

type DownloadFuture_GetResponse_Call added in v1.15.1

type DownloadFuture_GetResponse_Call struct {
	*mock.Call
}

DownloadFuture_GetResponse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponse'

func (*DownloadFuture_GetResponse_Call) Return added in v1.15.1

func (*DownloadFuture_GetResponse_Call) Run added in v1.15.1

func (*DownloadFuture_GetResponse_Call) RunAndReturn added in v1.15.1

type DownloadFuture_OnReady_Call added in v1.15.1

type DownloadFuture_OnReady_Call struct {
	*mock.Call
}

DownloadFuture_OnReady_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnReady'

func (*DownloadFuture_OnReady_Call) Return added in v1.15.1

func (*DownloadFuture_OnReady_Call) Run added in v1.15.1

func (*DownloadFuture_OnReady_Call) RunAndReturn added in v1.15.1

type DownloadResponse

type DownloadResponse struct {
	mock.Mock
}

DownloadResponse is an autogenerated mock type for the DownloadResponse type

func NewDownloadResponse added in v1.15.1

func NewDownloadResponse(t interface {
	mock.TestingT
	Cleanup(func())
}) *DownloadResponse

NewDownloadResponse creates a new instance of DownloadResponse. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*DownloadResponse) EXPECT added in v1.15.1

func (*DownloadResponse) GetCachedCount

func (_m *DownloadResponse) GetCachedCount() int

GetCachedCount provides a mock function with no fields

func (*DownloadResponse) GetCachedResults

func (_m *DownloadResponse) GetCachedResults() *bitarray.BitSet

GetCachedResults provides a mock function with no fields

func (*DownloadResponse) GetResultsSize

func (_m *DownloadResponse) GetResultsSize() int

GetResultsSize provides a mock function with no fields

type DownloadResponse_Expecter added in v1.15.1

type DownloadResponse_Expecter struct {
	// contains filtered or unexported fields
}

func (*DownloadResponse_Expecter) GetCachedCount added in v1.15.1

GetCachedCount is a helper method to define mock.On call

func (*DownloadResponse_Expecter) GetCachedResults added in v1.15.1

GetCachedResults is a helper method to define mock.On call

func (*DownloadResponse_Expecter) GetResultsSize added in v1.15.1

GetResultsSize is a helper method to define mock.On call

type DownloadResponse_GetCachedCount_Call added in v1.15.1

type DownloadResponse_GetCachedCount_Call struct {
	*mock.Call
}

DownloadResponse_GetCachedCount_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCachedCount'

func (*DownloadResponse_GetCachedCount_Call) Return added in v1.15.1

func (*DownloadResponse_GetCachedCount_Call) Run added in v1.15.1

func (*DownloadResponse_GetCachedCount_Call) RunAndReturn added in v1.15.1

type DownloadResponse_GetCachedResults_Call added in v1.15.1

type DownloadResponse_GetCachedResults_Call struct {
	*mock.Call
}

DownloadResponse_GetCachedResults_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCachedResults'

func (*DownloadResponse_GetCachedResults_Call) Return added in v1.15.1

func (*DownloadResponse_GetCachedResults_Call) Run added in v1.15.1

func (*DownloadResponse_GetCachedResults_Call) RunAndReturn added in v1.15.1

type DownloadResponse_GetResultsSize_Call added in v1.15.1

type DownloadResponse_GetResultsSize_Call struct {
	*mock.Call
}

DownloadResponse_GetResultsSize_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResultsSize'

func (*DownloadResponse_GetResultsSize_Call) Return added in v1.15.1

func (*DownloadResponse_GetResultsSize_Call) Run added in v1.15.1

func (*DownloadResponse_GetResultsSize_Call) RunAndReturn added in v1.15.1

type Future

type Future struct {
	mock.Mock
}

Future is an autogenerated mock type for the Future type

func NewFuture added in v1.15.1

func NewFuture(t interface {
	mock.TestingT
	Cleanup(func())
}) *Future

NewFuture creates a new instance of Future. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*Future) EXPECT added in v1.15.1

func (_m *Future) EXPECT() *Future_Expecter

func (*Future) GetResponseError

func (_m *Future) GetResponseError() error

GetResponseError provides a mock function with no fields

func (*Future) GetResponseStatus

func (_m *Future) GetResponseStatus() catalog.ResponseStatus

GetResponseStatus provides a mock function with no fields

func (*Future) OnReady

func (_m *Future) OnReady(handler catalog.ReadyHandler)

OnReady provides a mock function with given fields: handler

type Future_Expecter added in v1.15.1

type Future_Expecter struct {
	// contains filtered or unexported fields
}

func (*Future_Expecter) GetResponseError added in v1.15.1

func (_e *Future_Expecter) GetResponseError() *Future_GetResponseError_Call

GetResponseError is a helper method to define mock.On call

func (*Future_Expecter) GetResponseStatus added in v1.15.1

func (_e *Future_Expecter) GetResponseStatus() *Future_GetResponseStatus_Call

GetResponseStatus is a helper method to define mock.On call

func (*Future_Expecter) OnReady added in v1.15.1

func (_e *Future_Expecter) OnReady(handler interface{}) *Future_OnReady_Call

OnReady is a helper method to define mock.On call

  • handler catalog.ReadyHandler

type Future_GetResponseError_Call added in v1.15.1

type Future_GetResponseError_Call struct {
	*mock.Call
}

Future_GetResponseError_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponseError'

func (*Future_GetResponseError_Call) Return added in v1.15.1

func (*Future_GetResponseError_Call) Run added in v1.15.1

func (*Future_GetResponseError_Call) RunAndReturn added in v1.15.1

func (_c *Future_GetResponseError_Call) RunAndReturn(run func() error) *Future_GetResponseError_Call

type Future_GetResponseStatus_Call added in v1.15.1

type Future_GetResponseStatus_Call struct {
	*mock.Call
}

Future_GetResponseStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponseStatus'

func (*Future_GetResponseStatus_Call) Return added in v1.15.1

func (*Future_GetResponseStatus_Call) Run added in v1.15.1

func (*Future_GetResponseStatus_Call) RunAndReturn added in v1.15.1

type Future_OnReady_Call added in v1.15.1

type Future_OnReady_Call struct {
	*mock.Call
}

Future_OnReady_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnReady'

func (*Future_OnReady_Call) Return added in v1.15.1

func (*Future_OnReady_Call) Run added in v1.15.1

func (_c *Future_OnReady_Call) Run(run func(handler catalog.ReadyHandler)) *Future_OnReady_Call

func (*Future_OnReady_Call) RunAndReturn added in v1.15.1

func (_c *Future_OnReady_Call) RunAndReturn(run func(catalog.ReadyHandler)) *Future_OnReady_Call

type ReadyHandler added in v1.15.1

type ReadyHandler struct {
	mock.Mock
}

ReadyHandler is an autogenerated mock type for the ReadyHandler type

func NewReadyHandler added in v1.15.1

func NewReadyHandler(t interface {
	mock.TestingT
	Cleanup(func())
}) *ReadyHandler

NewReadyHandler creates a new instance of ReadyHandler. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*ReadyHandler) EXPECT added in v1.15.1

func (_m *ReadyHandler) EXPECT() *ReadyHandler_Expecter

func (*ReadyHandler) Execute added in v1.15.1

func (_m *ReadyHandler) Execute(ctx context.Context, future catalog.Future)

Execute provides a mock function with given fields: ctx, future

type ReadyHandler_Execute_Call added in v1.15.1

type ReadyHandler_Execute_Call struct {
	*mock.Call
}

ReadyHandler_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*ReadyHandler_Execute_Call) Return added in v1.15.1

func (*ReadyHandler_Execute_Call) Run added in v1.15.1

func (*ReadyHandler_Execute_Call) RunAndReturn added in v1.15.1

type ReadyHandler_Expecter added in v1.15.1

type ReadyHandler_Expecter struct {
	// contains filtered or unexported fields
}

func (*ReadyHandler_Expecter) Execute added in v1.15.1

func (_e *ReadyHandler_Expecter) Execute(ctx interface{}, future interface{}) *ReadyHandler_Execute_Call

Execute is a helper method to define mock.On call

  • ctx context.Context
  • future catalog.Future

type UploadFuture

type UploadFuture struct {
	mock.Mock
}

UploadFuture is an autogenerated mock type for the UploadFuture type

func NewUploadFuture added in v1.15.1

func NewUploadFuture(t interface {
	mock.TestingT
	Cleanup(func())
}) *UploadFuture

NewUploadFuture creates a new instance of UploadFuture. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*UploadFuture) EXPECT added in v1.15.1

func (_m *UploadFuture) EXPECT() *UploadFuture_Expecter

func (*UploadFuture) GetResponseError

func (_m *UploadFuture) GetResponseError() error

GetResponseError provides a mock function with no fields

func (*UploadFuture) GetResponseStatus

func (_m *UploadFuture) GetResponseStatus() catalog.ResponseStatus

GetResponseStatus provides a mock function with no fields

func (*UploadFuture) OnReady

func (_m *UploadFuture) OnReady(handler catalog.ReadyHandler)

OnReady provides a mock function with given fields: handler

type UploadFuture_Expecter added in v1.15.1

type UploadFuture_Expecter struct {
	// contains filtered or unexported fields
}

func (*UploadFuture_Expecter) GetResponseError added in v1.15.1

GetResponseError is a helper method to define mock.On call

func (*UploadFuture_Expecter) GetResponseStatus added in v1.15.1

GetResponseStatus is a helper method to define mock.On call

func (*UploadFuture_Expecter) OnReady added in v1.15.1

func (_e *UploadFuture_Expecter) OnReady(handler interface{}) *UploadFuture_OnReady_Call

OnReady is a helper method to define mock.On call

  • handler catalog.ReadyHandler

type UploadFuture_GetResponseError_Call added in v1.15.1

type UploadFuture_GetResponseError_Call struct {
	*mock.Call
}

UploadFuture_GetResponseError_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponseError'

func (*UploadFuture_GetResponseError_Call) Return added in v1.15.1

func (*UploadFuture_GetResponseError_Call) Run added in v1.15.1

func (*UploadFuture_GetResponseError_Call) RunAndReturn added in v1.15.1

type UploadFuture_GetResponseStatus_Call added in v1.15.1

type UploadFuture_GetResponseStatus_Call struct {
	*mock.Call
}

UploadFuture_GetResponseStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponseStatus'

func (*UploadFuture_GetResponseStatus_Call) Return added in v1.15.1

func (*UploadFuture_GetResponseStatus_Call) Run added in v1.15.1

func (*UploadFuture_GetResponseStatus_Call) RunAndReturn added in v1.15.1

type UploadFuture_OnReady_Call added in v1.15.1

type UploadFuture_OnReady_Call struct {
	*mock.Call
}

UploadFuture_OnReady_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnReady'

func (*UploadFuture_OnReady_Call) Return added in v1.15.1

func (*UploadFuture_OnReady_Call) Run added in v1.15.1

func (*UploadFuture_OnReady_Call) RunAndReturn added in v1.15.1

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL