- Sort Score
- Result 10 results
- Languages All
Results 421 - 430 of 713 for emetadata (0.05 sec)
-
okhttp/build.gradle.kts
classpath = compileKotlinTask.libraries modularity.inferModulePath.set(true) } // Call the convention when the task has finished, to modify the jar to contain OSGi metadata. tasks.named<Jar>("jvmJar").configure { manifest { attributes( "Multi-Release" to true, ) } from(compileJavaModuleInfo.get().destinationDirectory) {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 12.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
return layout.pathOfRemoteRepositoryMetadata(artifactMetadata); } @Override public String pathOfLocalRepositoryMetadata(ArtifactMetadata metadata, ArtifactRepository repository) { return layout.pathOfLocalRepositoryMetadata(metadata, repository); } @Override public void setLayout(ArtifactRepositoryLayout layout) { this.layout = layout; } @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
api/maven-api-plugin/src/main/java/org/apache/maven/api/plugin/descriptor/package-info.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /** * Provides classes for Maven plugin descriptors that define plugin metadata, configuration, * and execution parameters. These descriptors are typically stored in plugin.xml files * within the META-INF/maven directory of plugin JARs. * * @since 4.0.0 */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 04 14:17:18 UTC 2025 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolutionException.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository.metadata; /** * * */ @Deprecated public class GraphConflictResolutionException extends Exception { private static final long serialVersionUID = 2677613140287940255L;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
cmd/object_api_suite_test.go
key := "obj" + strconv.Itoa(i) objects[key] = []byte(randomString) metadata := make(map[string]string) metadata["etag"] = expectedETaghex var objInfo ObjectInfo objInfo, err = obj.PutObject(context.Background(), "bucket", key, mustGetPutObjReader(t, bytes.NewBufferString(randomString), int64(len(randomString)), metadata["etag"], ""), ObjectOptions{UserDefined: metadata}) if err != nil { t.Fatalf("%s: <ERROR> %s", instanceType, err)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.5K bytes - Viewed (0) -
src/test/java/jcifs/util/CryptoTest.java
void testEmptyInputHashing() { // Given byte[] emptyData = {}; // When MessageDigest md4 = Crypto.getMD4(); MessageDigest md5 = Crypto.getMD5(); byte[] md4Hash = md4.digest(emptyData); byte[] md5Hash = md5.digest(emptyData); // Then assertNotNull(md4Hash); assertNotNull(md5Hash);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptor.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.project; import java.util.ArrayList; import java.util.List; /** * Provides metadata about a build extension. <strong>Warning:</strong> This is an internal utility class that is only * public for technical reasons, it is not part of the public API. In particular, this class can be changed or deleted
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
tests/test_tutorial/test_sql_databases/test_tutorial001.py
from sqlmodel import SQLModel, create_engine from sqlmodel.main import default_registry from tests.utils import needs_py310 def clear_sqlmodel(): # Clear the tables in the metadata for the default base model SQLModel.metadata.clear() # Clear the Models associated with the registry, to avoid warnings default_registry.dispose() @pytest.fixture( name="client", params=[
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:19:10 UTC 2025 - 14K bytes - Viewed (0) -
cmd/batch-expire_test.go
createdBefore: "2006-01-02T15:04:05.00Z" # match objects created before "date" tags: - key: name value: pick* # match objects with tag 'name', all values starting with 'pick' metadata: - key: content-type value: image/* # match objects with 'content-type', all values starting with 'image/' size: lessThan: "10MiB" # match objects with size less than this value (e.g. 10MiB)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Aug 01 12:53:30 UTC 2024 - 5.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java
// This is the case where someone has executed a single goal from the command line // of the form: // // mvn remote-resources:process // // From the metadata stored on the server which has been created as part of a standard // Maven plugin deployment we will find the right PluginDescriptor from the remote // repository.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 11.3K bytes - Viewed (0)