- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 662 for extensions (0.06 sec)
-
dbflute_fess/extlib/_readme.txt
Directory for library extension If you use a database that DBFlute does not have its JDBC driver, put your own JDBC driver for the database here.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 177 bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java
throws ArtifactInstallationException { String extension = artifact.getArtifactHandler().getExtension(); File source = new File(basedir, finalName + "." + extension); install(source, artifact, localRepository); } public void install(File source, Artifact artifact, ArtifactRepository localRepository)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/JSSETest.kt
import org.junit.jupiter.api.Assertions.assertNotEquals import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.RegisterExtension class JSSETest { @JvmField @RegisterExtension var platform = PlatformRule() @JvmField @RegisterExtension val clientTestRule = OkHttpClientTestRule()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 5.4K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
<defaultValue></defaultValue> <identifier>true</identifier> </field> <field> <name>extension</name> <version>1.1.0+</version> <type>String</type> <description>The file extension of the sub-artifact. Each classifier and extension pair may only appear once.</description>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K bytes - Viewed (0) -
cmd/bucket-versioning.go
return vc.Enabled() } // PrefixEnabled returns true is versioning is enabled at bucket level and if // the given prefix doesn't match any excluded prefixes pattern. This is // part of a MinIO versioning configuration extension. func (sys *BucketVersioningSys) PrefixEnabled(bucket, prefix string) bool { vc, err := sys.Get(bucket) if err != nil { logger.CriticalIf(GlobalContext, err) } return vc.PrefixEnabled(prefix) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 2.6K bytes - Viewed (0) -
internal/bucket/versioning/versioning.go
const ( Enabled State = "Enabled" // Disabled State = "Disabled" only used by MFA Delete not supported yet. Suspended State = "Suspended" ) var ( errExcludedPrefixNotSupported = Errorf("excluded prefixes extension supported only when versioning is enabled") errTooManyExcludedPrefixes = Errorf("too many excluded prefixes") ) // ExcludedPrefix - holds individual prefixes excluded from being versioned. type ExcludedPrefix struct {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 4.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/RequestBody.kt
fileSystem.source(this@asRequestBody).use { source -> sink.writeAll(source) } } } } @JvmStatic @Deprecated( message = "Moved to extension function. Put the 'content' argument first to fix Java", replaceWith = ReplaceWith( expression = "content.toRequestBody(contentType)",
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 25 14:41:37 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/fr/docs/deployment/https.md
* Il existe cependant une solution à ce problème. * Il existe une extension du protocole TLS (celui qui gère le cryptage au niveau TCP, avant HTTP) appelée <a href="https://fr.wikipedia.org/wiki/Server_Name_Indication" class="external-link" target="_blank"><abbr title="Server Name Indication (indication du nom du serveur)">SNI (indication du nom du serveur)</abbr></a>.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/base/StandardSystemProperty.java
JAVA_IO_TMPDIR("java.io.tmpdir"), /** Name of JIT compiler to use. */ JAVA_COMPILER("java.compiler"), /** * Path of extension directory or directories. * * @deprecated This property was <a * href="https://openjdk.java.net/jeps/220#Removed:-The-extension-mechanism">deprecated</a> in * Java 8 and removed in Java 9. We do not plan to remove this API from Guava, but if you are
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 23 15:09:35 UTC 2023 - 5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java
*/ @Nonnull String getName(); /** * Returns the file extension to be used for given checksum file (without leading dot), never {@code null}. The * extension should be file and URL path friendly, and may differ from algorithm name. * The checksum extension SHOULD NOT contain dot (".") character. * Example: "sha1". */ @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Jul 10 20:52:34 UTC 2024 - 6.4K bytes - Viewed (0)