- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 733 for metadatos (0.12 sec)
-
scripts/mkdocs_hooks.py
def on_pre_page(page: Page, *, config: MkDocsConfig, files: Files) -> Page: return page def on_page_markdown( markdown: str, *, page: Page, config: MkDocsConfig, files: Files ) -> str: # Set metadata["social"]["cards_layout_options"]["title"] to clean title (without # permalink) title = page.title clean_title = title.split("{ #")[0] if clean_title: page.meta.setdefault("social", {})
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 5.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RepositoryAwareRequest.java
* are validated to ensure they don't contain duplicates or null entries. * * <p>Remote repositories are used for: * <ul> * <li>Resolving artifacts and their metadata</li> * <li>Downloading parent POMs and dependency POMs</li> * <li>Retrieving version information and ranges</li> * <li>Accessing plugin artifacts and their dependencies</li> * </ul> *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 5K bytes - Viewed (0) -
cmd/bucket-handlers.go
hashReader.SetExpectedMin(lengthRange.Min) hashReader.SetExpectedMax(lengthRange.Max) } } // Extract metadata to be saved from received Form. metadata := make(map[string]string) err = extractMetadataFromMime(ctx, textproto.MIMEHeader(formValues), metadata) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } rawReader := hashReader
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 63.9K bytes - Viewed (0) -
docs/en/docs/tutorial/body-multiple-params.md
```Python q: str | None = None ``` For example: {* ../../docs_src/body_multiple_params/tutorial004_an_py310.py hl[28] *} /// info `Body` also has all the same extra validation and metadata parameters as `Query`, `Path` and others you will see later. /// ## Embed a single body parameter { #embed-a-single-body-parameter }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Sep 20 12:58:04 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* * This class encapsulates all the information returned from a search query, * including the list of matching documents, total record count, query execution * time, facet information, and metadata about the search results. */ public class SearchResult { /** The list of documents returned by the search query. */ protected final List<Map<String, Object>> documentList;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
cmd/storage-rest-client.go
} select { case <-ctx.Done(): return ctx.Err() case resp <- file: } } } // CleanAbandonedData will read metadata of the object on disk // and delete any data directories and inline data that isn't referenced in metadata. func (client *storageRESTClient) CleanAbandonedData(ctx context.Context, volume string, path string) error { values := make(url.Values)Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 08 02:38:41 UTC 2025 - 30.4K bytes - Viewed (0) -
cmd/server-main.go
} bootLogIf(GlobalContext, fmt.Errorf("Unable to list buckets to initialize bucket metadata sub-system: %w", err)) } buckets = make([]string, len(bucketsList)) for i := range bucketsList { buckets[i] = bucketsList[i].Name } break } }) // Initialize bucket metadata sub-system. bootstrapTrace("globalBucketMetadataSys.Init", func() {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue May 27 15:18:36 UTC 2025 - 35.9K bytes - Viewed (4) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import java.util.Map; /** * A response list that extends List functionality and includes pagination and search metadata. * This class wraps search results with pagination information, facet responses, and query statistics. * It implements the List interface to provide standard list operations while adding search-specific
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
cmd/bucket-targets.go
) type arnTarget struct { Client *TargetClient lastRefresh time.Time } // arnErrs represents number of errors seen for a ARN and if update is in progress // to refresh remote targets from bucket metadata. type arnErrs struct { count int64 updateInProgress bool bucket string } // BucketTargetSys represents bucket targets subsystem type BucketTargetSys struct { sync.RWMutexRegistered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 20.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
assertTrue(keySet.contains("key2")); assertTrue(keySet.contains("key3")); } public void test_getKeySetEmpty() { // Test getKeySet on empty metadata ExtractData data = new ExtractData(); Set<String> keySet = data.getKeySet(); assertNotNull(keySet); assertTrue(keySet.isEmpty()); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0)