- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 9,609 for version (0.07 sec)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java
+ " <version>1</version>\n" + " <packaging>pom</packaging>\n" + " <dependencyManagement>\n" + " <dependencies>\n" + " <dependency>\n" + " <groupId>thegroup</groupId>\n" + " <artifactId>base2</artifactId>\n" + " <version>1</version>\n" + " <type>pom</type>\n"
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.9K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/empty-module.xml
specific language governing permissions and limitations under the License. --> <project> <modelVersion>4.0.0</modelVersion> <artifactId>aid</artifactId> <groupId>gid</groupId> <version>0.1</version> <packaging>pom</packaging> <modules> <module> </module> </modules>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 984 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/missing-report-artifactId-pom.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt
} private fun versionsDates(): Map<Version, String> { val versions = mutableMapOf<Version, String>() var version: String? = null parameters.releasedVersionsFile.get().asFile.forEachLine(Charsets.UTF_8) { val line = it.trim() if (line.startsWith("\"version\"")) { version = line.substring(line.indexOf("\"", 11) + 1, line.lastIndexOf("\"")) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 12.8K bytes - Viewed (0) -
cmd/bucket-lifecycle.go
} } // enqueueByNewerNoncurrent enqueues object versions expired by // NewerNoncurrentVersions limit for expiry. func (es *expiryState) enqueueByNewerNoncurrent(bucket string, versions []ObjectToDelete, lcEvent lifecycle.Event) { if len(versions) == 0 { return } task := newerNoncurrentTask{bucket: bucket, versions: versions, event: lcEvent} wrkr := es.getWorkerCh(task.OpHash()) if wrkr == nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 23 15:35:37 UTC 2024 - 33.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 10.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/TlsVersion.kt
/* * Copyright (C) 2014 Square, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
validateApi(body, messages -> {}); final Artifact artifact = ComponentUtil.getPluginHelper().getArtifact(body.name, body.version); if (artifact == null) { return asJson( new ApiResult.ApiErrorResponse().message("invalid name or version").status(ApiResult.Status.BAD_REQUEST).result()); } installArtifact(artifact);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java
} public boolean isUpperBoundInclusive() { return upperBoundInclusive; } public boolean containsVersion(ArtifactVersion version) { if (lowerBound != null) { int comparison = lowerBound.compareTo(version); if ((comparison == 0) && !lowerBoundInclusive) { return false; } if (comparison > 0) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/en/docs/tutorial/request-form-models.md
```console $ pip install python-multipart ``` /// /// note This is supported since FastAPI version `0.113.0`. 🤓 /// ## Pydantic Models for Forms You just need to declare a **Pydantic model** with the fields you want to receive as **form fields**, and then declare the parameter as `Form`:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.8K bytes - Viewed (0)