- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 289 for extracted (0.17 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy
import org.w3c.dom.Document import org.w3c.dom.Element /** * Generates the docbook source for the DSL reference guide. * * Uses the following as input: * <ul> * <li>Meta-data extracted from the source by {@link gradlebuild.docs.dsl.source.ExtractDslMetaDataTask}.</li> * <li>Meta-data about the plugins, in the form of an XML file.</li>
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 9.8K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/JdkDownloadPluginFuncTest.groovy
private static final Pattern JDK_HOME_LOGLINE = Pattern.compile("JDK HOME: (.*)") @Unroll def "jdk #jdkVendor for #platform#suffix are downloaded and extracted"() { given: def mockRepoUrl = urlPath(jdkVendor, jdkVersion, platform, arch); def mockedContent = filebytes(jdkVendor, platform) buildFile.text = """ plugins {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 27 19:29:10 GMT 2021 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java
return ".sql=text/x-sql"; } }); mimeTypeHelper.init(); // Filename with path should still have extension extracted correctly try (InputStream is = new ByteArrayInputStream(SQL_REM_CONTENT.getBytes(StandardCharsets.UTF_8))) { assertEquals("text/x-sql", mimeTypeHelper.getContentType(is, "/path/to/script.sql")); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 24 09:06:33 GMT 2026 - 12.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* This method searches for 'fess_ds++.xml' configuration files within JAR files * in the data store plugin directory and extracts component class names. * * <p>The method uses secure XML parsing features to prevent XXE attacks and * other XML-based vulnerabilities. Component class names are extracted from * the 'class' attribute of 'component' elements in the XML files.</p> *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
internal/http/headers.go
// An error will be printed to console instead. MinIOSnowballIgnoreErrors = "X-Amz-Meta-Minio-Snowball-Ignore-Errors" // MinIOSnowballPrefix will apply this prefix (plus / at end) to all extracted objects MinIOSnowballPrefix = "X-Amz-Meta-Minio-Snowball-Prefix" // Object lock enabled AmzObjectLockEnabled = "x-amz-bucket-object-lock-enabled" // Multipart parts count AmzMpPartsCount = "x-amz-mp-parts-count"
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 07 15:37:12 GMT 2025 - 10.8K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.ide.gradle
Paths.get(file(checkstyleIdeConfig).getPath()), StandardCopyOption.REPLACE_EXISTING ) // There are some rules that we only want to enable in an IDE. These // are extracted to a separate file, and merged into the IDE-specific // Checkstyle config. Node xmlFragment = parseXml(checkstyleIdeFragment) // Edit the copy so that IntelliJ can copy with it
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 24 19:34:12 GMT 2021 - 8.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPlugin.java
expandedDistDirSupport ? new File(checkoutDir, baseDir + "/" + name + "/build/install") : null ); } /** * Newer elasticsearch branches allow building extracted bwc elasticsearch versions * from source without the overhead of creating an archive by using assembleExtracted instead of assemble. */ public String getAssembleTaskName() {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Aug 18 09:11:28 GMT 2021 - 14.5K bytes - Click Count (0) -
internal/crypto/sse-kms.go
} if idPresent && !kmsKeyPresent { return keyID, kmsKey, sealedKey, ctx, Errorf("The object metadata is missing the internal sealed KMS data key for SSE-S3") } // Check whether all extracted values are well-formed iv, err := base64.StdEncoding.DecodeString(b64IV) if err != nil || len(iv) != 32 { return keyID, kmsKey, sealedKey, ctx, errInvalidInternalIV } if algorithm != SealAlgorithm {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue May 07 23:55:37 GMT 2024 - 8.5K bytes - Click Count (0) -
cmd/erasure-metadata.go
FreeVersion: fi.TierFreeVersion(), Tier: fi.TransitionTier, } // etag/md5Sum has already been extracted. We need to // remove to avoid it from appearing as part of // response headers. e.g, X-Minio-* or X-Amz-*. // Tags have also been extracted, we remove that as well. objInfo.UserDefined = cleanMetadata(fi.Metadata) // All the parts per object. objInfo.Parts = fi.Parts
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 21.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
} return value; } /** * Extracts the filename from a URL, handling various protocols and URL decoding. * Processes HTTP, HTTPS, file, SMB, and FTP URLs appropriately. * * @param url the URL to extract filename from * @param encoding the character encoding (currently unused in this method) * @return the extracted filename, or empty string if none found */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 14.1K bytes - Click Count (0)