MCPcopy Create free account

hub / github.com/dialog-db/dialog-db / functions

Functions4,212 in github.com/dialog-db/dialog-db

↓ 38 callersFunctionunique_subject
Build a `Subject` whose DID embeds a unique-per-process token. Useful for tests that need distinct subjects without spinning a new ed25519 signer.
rust/dialog-storage/src/helpers.rs:87
↓ 38 callersMethodwrite
Write contents to the file at this location, creating parent dirs.
rust/dialog-storage/src/storage/provider/fs.rs:358
↓ 35 callersMethodassert
(self, update: &mut impl Update)
rust/dialog-query/src/attribute/expression/typed.rs:159
↓ 35 callersMethodcredential
Get a credential handle for saving/loading site secrets.
rust/dialog-operator/src/profile.rs:57
↓ 34 callersMethodfork
Attach a site address to this capability for remote execution. Returns a [`Fork`] that can be `.perform()`ed against a provider that handles authoriz
rust/dialog-capability/src/capability.rs:138
↓ 34 callersMethodput
Stores a blob from a stream of bytes. Returns the Blake3 hash of the stored blob.
rust/dialog-blobs/src/blob_storage.rs:48
↓ 34 callersMethodread
Read the contents of the file at this location.
rust/dialog-storage/src/storage/provider/fs.rs:339
↓ 33 callersMethodclaims
The branch's artifact index. Use `.select(selector).perform(&env)` to query artifacts. If the branch has a remote upstream, missing blocks are replic
rust/dialog-repository/src/repository/branch/claims.rs:25
↓ 33 callersFunctionjournaled_storage
(backend: &MemoryStorageBackend<Blake3Hash, Vec<u8>>)
rust/dialog-search-tree/src/differential.rs:982
↓ 33 callersMethodregion
Get the region.
rust/dialog-remote-s3/src/s3/address.rs:90
↓ 33 callersMethodthe
Get the attribute for this claim
rust/dialog-query/src/claim.rs:25
↓ 32 callersMethodbucket
Get the bucket name.
rust/dialog-remote-s3/src/s3/address.rs:95
↓ 32 callersMethodbuild
Build the operator, deriving the operator key.
rust/dialog-operator/src/operator/builder.rs:69
↓ 32 callersMethodbuild
Build the address, parsing and validating the endpoint URL. For virtual-hosted style, the bucket is prepended to the endpoint host so that `resolve`
rust/dialog-remote-s3/src/s3/address.rs:226
↓ 32 callersMethodselect
Stage a query against this transaction's view. Call [`perform`](TransactionSelectQuery::perform) to execute.
rust/dialog-repository/src/transaction_query.rs:83
↓ 31 callersMethodaccess
Get an access handle for claiming and delegating capabilities.
rust/dialog-operator/src/profile.rs:70
↓ 31 callersMethodarchive
Returns the handle for this space's archive directory.
rust/dialog-storage/src/storage/provider/fs/archive.rs:17
↓ 31 callersMethodbind
Adds this term's variable name to the environment. Only named variables are added; constants and blanks are ignored.
rust/dialog-query/src/term.rs:253
↓ 31 callersMethodderive
Derive an operator from this profile with the given context seed.
rust/dialog-operator/src/profile.rs:75
↓ 31 callersMethodfork
Build a remote-site version of this command. The returned [`ForkResolve`] can be executed against an environment that knows how to reach the remote s
rust/dialog-repository/src/repository/memory/resolve.rs:42
↓ 31 callersMethodlock
Acquire a PID lock for this handle by appending `.lock` to its path.
rust/dialog-storage/src/storage/provider/fs/memory.rs:118
↓ 31 callersMethodnetwork
Set the network dispatch provider.
rust/dialog-operator/src/operator/builder.rs:63
↓ 31 callersFunctionunique_name
Generate a unique name with a prefix for test isolation.
rust/dialog-operator/src/helpers.rs:14
↓ 30 callersMethodis_empty
Returns `true` if the schema has no fields.
rust/dialog-query/src/schema.rs:74
↓ 30 callersMethodlen
Get the number of tokens in the container.
rust/dialog-ucan-core/src/container.rs:142
↓ 30 callersMethodpush
Create a command to push local changes to the upstream branch. Reads the upstream configuration from branch state and dispatches to local or remote p
rust/dialog-repository/src/repository/branch/push.rs:34
↓ 30 callersFunctionunique_did
Generate a fresh ed25519 signer and return its DID.
rust/dialog-storage/src/helpers.rs:78
↓ 29 callersMethodcell
Adds a new cell with the given name and optional type, returning it for further configuration.
rust/dialog-query/src/formula/cell.rs:182
↓ 29 callersMethodcheck
Check if this invocation is valid. This method performs two checks: 1. Verifies that the invocation's signature is valid 2. Validates the proof chain
rust/dialog-ucan-core/src/invocation.rs:129
↓ 29 callersFunctionparse
Parse a filter from a string. # Errors Returns a `nom` error if the parser fails to match.
rust/dialog-ucan-core/src/delegation/policy/selector/filter.rs:123
↓ 29 callersMethodpath
Returns the URL path component of this location.
rust/dialog-storage/src/storage/provider/fs.rs:286
↓ 28 callersMethodclaim
Claim authority over a capability.
rust/dialog-operator/src/profile/access.rs:31
↓ 28 callersMethodperform
Perform the resolve against the local environment.
rust/dialog-repository/src/repository/memory/resolve.rs:30
↓ 28 callersMethodset_upstream
Create a command to set the upstream for this branch. Accepts either a `&Branch` or a `&RemoteBranch` (converted via `From` impls on [`UpstreamBranch
rust/dialog-repository/src/repository/branch/set_upstream.rs:17
↓ 28 callersFunctionstore_delegation
Helper to insert a delegation into the store and return its CID.
rust/dialog-ucan-core/src/invocation.rs:1063
↓ 27 callersMethodperform
Execute this query, returning a stream of claims.
rust/dialog-query/src/attribute/query/only.rs:283
↓ 27 callersMethodremote
(&self, name: impl Into<String>)
rust/dialog-repository/src/repository/memory.rs:33
↓ 27 callersMethodroot
Returns the [`Blake3Hash`] of the root node of this tree. The root hash uniquely identifies this version of the tree and can be used to reconstruct t
rust/dialog-search-tree/src/tree.rs:123
↓ 27 callersMethodwrite
Write a value to the bindings Binds the value to the parameter's term in the match. Fails if the parameter key is not in the terms mapping or if the
rust/dialog-query/src/formula/bindings.rs:92
↓ 26 callersMethodallow
Allow a capability: creates a delegation from profile to operator.
rust/dialog-operator/src/operator/builder.rs:51
↓ 26 callersMethodbind_absent
Bind a term to [`Binding::Absent`]. Used by optional resolution premises that looked up an attribute and found no fact. Errors if the variable is alre
rust/dialog-query/src/selection/match.rs:236
↓ 26 callersFunctiondeserialize
Deserialize raw bytes into a value.
rust/dialog-common/src/as_bytes.rs:19
↓ 26 callersMethodget
(self, ctx: &Ipld)
rust/dialog-ucan-core/src/delegation/policy/selector/select.rs:77
↓ 26 callersMethoditer
Returns an iterator over all fields as (name, field) pairs, sorted by field name.
rust/dialog-query/src/concept/descriptor/named_attributes.rs:147
↓ 26 callersMethodkey
The key this edit targets, borrowed from the edit itself so the descent can route to its leaf without cloning a separate routing key.
rust/dialog-search-tree/src/tree/transient.rs:430
↓ 26 callersFunctionnew_store
Helper to create an `Rc<RefCell<HashMap>>` delegation store.
rust/dialog-ucan-core/src/invocation.rs:1058
↓ 26 callersMethodrepository
The loaded remote repository this branch lives at.
rust/dialog-repository/src/repository/remote/branch.rs:62
↓ 25 callersMethodcreate
Create a new remote with a site address. Uses the repository's own DID as the subject. Call `.subject(did)` on the returned builder to target a diffe
rust/dialog-repository/src/repository/remote/reference.rs:53
↓ 25 callersFunctiongenerate
Implementation used by `dialog_common::test` macro.
rust/dialog-macros/src/test.rs:104
↓ 25 callersMethodof
The DID of the repository this branch belongs to.
rust/dialog-repository/src/repository/branch/reference.rs:22
↓ 24 callersMethodcommit
( &mut self, instructions: Instructions, )
rust/dialog-artifacts/src/artifacts.rs:382
↓ 24 callersMethodrevision
The cell holding this branch's latest [`Revision`].
rust/dialog-repository/src/repository/branch/reference.rs:50
↓ 24 callersMethodstarts_with
(&self, prefix: &Command)
rust/dialog-ucan-core/src/command.rs:108
↓ 23 callersMethodclone
(&self)
rust/dialog-capability/src/capability.rs:30
↓ 23 callersFunctionnow
()
rust/dialog-common/src/time.rs:12
↓ 23 callersMethodread
Read a typed value from the bindings using a parameter name
rust/dialog-query/src/formula/bindings.rs:43
↓ 23 callersMethodstore
Gets a handle to the named object store. Upgrades the database schema if the store doesn't exist yet. The returned StoreSession holds a shared `Rc<Re
rust/dialog-storage/src/storage/provider/indexeddb.rs:219
↓ 22 callersFunctiondelegate
( issuer: &Ed25519Signer, audience: &Ed25519Signer, subject: Subject, )
rust/dialog-ucan/src/certificate_store.rs:20
↓ 22 callersMethodinto_hash_set
(self)
rust/dialog-search-tree/src/helpers.rs:278
↓ 22 callersMethodissuer
Get the issuer of the invocation.
rust/dialog-ucan-core/src/container/invocation.rs:124
↓ 22 callersMethodseed
Seed `entity_count` entities' worth of deterministic facts into the branch via a single transaction. Seeding is intentionally not part of any measure
rust/dialog-query/src/helpers.rs:336
↓ 22 callersMethodselect
( &self, selector: ArtifactSelector<Constrained>, )
rust/dialog-artifacts/src/artifacts.rs:352
↓ 22 callersMethodsubject
Get the subject (root authority) of the invocation.
rust/dialog-ucan-core/src/container/invocation.rs:119
↓ 22 callersMethodsubject
Get the subject for building capability chains.
rust/dialog-remote-s3/tests/s3/environment.rs:44
↓ 22 callersMethodto_cid
(&self)
rust/dialog-ucan-core/src/invocation.rs:115
↓ 21 callersMethodaccess
Access handle for claiming and delegating capabilities.
rust/dialog-repository/src/repository.rs:104
↓ 21 callersFunctioncollect_changes
( source: &TestTree, target: &TestTree, storage: &ContentAddressedStorage<CountingBack
rust/dialog-search-tree/src/differential.rs:685
↓ 21 callersMethodinto_iter
(self)
rust/dialog-artifacts/src/artifacts/update.rs:167
↓ 21 callersMethodis
Set the value for this dynamic attribute expression. Accepts concrete scalar values (`"Alice"`, `25u32`), [`Term`] variables (`Term::<String>::var("n
rust/dialog-query/src/attribute/expression/dynamic.rs:63
↓ 21 callersMethodof
Start building an expression for this attribute on a given entity. The entity can be either a concrete [`Entity`] or a [`Term<Entity>`].
rust/dialog-query/src/attribute/expression/typed.rs:29
↓ 21 callersMethodprofile_did
The profile's DID (the long-lived identity).
rust/dialog-operator/src/operator.rs:67
↓ 21 callersMethodresolve
Create a command to fetch the cell value from env. Call `.perform(&env)` for local, or `.fork(&address).perform(&env)` for remote.
rust/dialog-repository/src/repository/memory/cell.rs:210
↓ 21 callersMethodunify
Robinson unification with constraint propagation. Updates `self` in-place and returns the *unified type* — the principal meet of the two sides — so th
rust/dialog-query/src/type_system/unifier.rs:196
↓ 20 callersMethoddelegate
Chain into a delegation to the given audience.
rust/dialog-operator/src/profile/access.rs:89
↓ 20 callersMethodget
Look up a field value by its concept field name (e.g. "name", "age").
rust/dialog-query/src/concept/descriptor.rs:469
↓ 20 callersMethodget_mut
Returns a mutable reference to the field with the given name, if present.
rust/dialog-query/src/schema.rs:54
↓ 20 callersMethodis
Get the 'is' (value) parameter.
rust/dialog-query/src/attribute/query/only.rs:126
↓ 20 callersMethodload
(location: &Location)
rust/dialog-storage/src/storage/provider/space.rs:187
↓ 20 callersMethodof
Returns the DID of the host repository.
rust/dialog-repository/src/repository/branch.rs:138
↓ 19 callersMethodcompute
Concatenate `first` and `second` into `is`
rust/dialog-query/src/formula/string.rs:23
↓ 19 callersMethodfresh
Allocate a fresh `VarId` with the given constraint.
rust/dialog-query/src/type_system/unifier.rs:102
↓ 19 callersMethodget
Retrieves the value associated with `key` from the tree. This method performs a binary search through the tree hierarchy to locate the leaf segment c
rust/dialog-search-tree/src/tree.rs:176
↓ 19 callersMethodis
Get the 'is' (value) parameter.
rust/dialog-query/src/attribute/query/dynamic.rs:83
↓ 19 callersMethodis
Set the value for this attribute expression. Accepts **both** concrete values and query terms; the `Is` type parameter is preserved unevaluated in th
rust/dialog-query/src/attribute/expression/typed.rs:77
↓ 19 callersMethodissuer
Get the issuer of the root delegation (index 0, closest to subject). The root delegation's issuer is the original authority that started the delegati
rust/dialog-ucan-core/src/container/delegation.rs:159
↓ 19 callersMethodkind
(&self)
rust/dialog-query/src/formula/number.rs:280
↓ 19 callersFunctionopen_store
(name: &str)
rust/dialog-ucan/src/certificate_store.rs:55
↓ 19 callersFunctionsequential
Build a tree by inserting `keys` one at a time, each in its own single-operation edit batch, then flush it to storage. Persisting after every operatio
rust/dialog-search-tree/src/tree/transient.rs:1242
↓ 19 callersMethodtransact
* Takes changes and transacts them atomically into this database.
typescript/dialog-experimental/src/session.ts:84
↓ 18 callersMethodadd
Adds a variable name to the bound set. Returns `&mut Self` for chaining.
rust/dialog-query/src/environment.rs:34
↓ 18 callersMethodassociate
(&mut self, the: Attribute, of: Entity, is: Value)
rust/dialog-artifacts/src/artifacts/update.rs:137
↓ 18 callersMethodextend
Extends this environment with all names from `other`, returning the delta (the set of names that were new to this environment).
rust/dialog-query/src/environment.rs:61
↓ 18 callersMethodget
Read the current value, syncing from the inner cell first. If the cell has a newer value, the sticky cache is updated. Returns a read guard that dere
rust/dialog-repository/src/repository/memory/cell.rs:297
↓ 18 callersMethodinsert
Inserts a key/value pair, mutating the transient tree in place.
rust/dialog-search-tree/src/tree/transient.rs:140
↓ 18 callersMethodis_empty
Returns `true` if this delta has no pending entries.
rust/dialog-search-tree/src/delta.rs:77
↓ 18 callersMethodlen
Number of variables inferred.
rust/dialog-query/src/rule/types.rs:391
↓ 18 callersFunctionmake_target_storage
Creates a platform-specific persisted [`StorageBackend`], for use in tests
rust/dialog-storage/src/helpers.rs:30
↓ 18 callersMethodof
Get the 'of' (entity) term.
rust/dialog-query/src/attribute/query/only.rs:121
↓ 18 callersMethodplan
Plan this rule's premises against a scope, producing a concrete execution plan ([`Conjunction`]) ordered for the given bindings. Reuses the analysis-i
rust/dialog-query/src/rule/inductive.rs:79
↓ 18 callersFunctionsign
Sign a message using WebCrypto.
rust/dialog-credentials/src/ed25519/web.rs:248
← previousnext →101–200 of 4,212, ranked by callers