Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 707 for extension (0.12 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

            private String version;
    
            private String extension;
    
            private String classifier;
    
            public Artifact(String groupId, String artifactId, String version, String extension, String classifier) {
                this.groupId = groupId;
                this.artifactId = artifactId;
                this.version = version;
                this.extension = extension;
                this.classifier = classifier;
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

         * @see ArtifactCoordinates#getClassifier()
         */
        @Nonnull
        String getClassifier();
    
        /**
         * Returns the file extension of the artifact.
         * The dot separator is not included in the returned string.
         *
         * @return the file extension or an empty string if none, never {@code null}
         * @see ArtifactCoordinates#getExtension()
         */
        @Nonnull
        String getExtension();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/path-operation-advanced-configuration.md

    /// tip
    
    This is a low level extension point.
    
    If you only need to declare additional responses, a more convenient way to do it is with [Additional Responses in OpenAPI](additional-responses.md){.internal-link target=_blank}.
    
    ///
    
    You can extend the OpenAPI schema for a *path operation* using the parameter `openapi_extra`.
    
    ### OpenAPI Extensions
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. impl/maven-core/plugin-manager.txt

     * information among plugins, is this more like an extension point - do we need a sort of bus for
     * application data - do we need a dictionary for our applications like Apple does. We could easily
     * hook into this and this is the model we need to follow - how many of our REST services do not map
     * directory to a method in the application interface?
     *
     * - research extension points versus plugins
     *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/MediaType.kt

        @JvmStatic
        @JvmName("parse")
        fun String.toMediaTypeOrNull(): MediaType? = commonToMediaTypeOrNull()
    
        @JvmName("-deprecated_get")
        @Deprecated(
          message = "moved to extension function",
          replaceWith =
            ReplaceWith(
              expression = "mediaType.toMediaType()",
              imports = ["okhttp3.MediaType.Companion.toMediaType"],
            ),
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/LocalSnapshotMetadata.java

                metadata.setPlugins(new ArrayList<>(recessive.getPlugins()));
            }
    
            artifacts.clear();
        }
    
        private String getKey(String classifier, String extension) {
            return classifier + ':' + extension;
        }
    
        @Override
        public String getGroupId() {
            return metadata.getGroupId();
        }
    
        @Override
        public String getArtifactId() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/extension/TestFileCleanUpExtension.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.testcleanup.extension
    
    import org.gradle.api.provider.Property
    
    
    /**
     *  An extension for project build script to configure whether the leftover files should be treated:
     *  report only, or a failure.
     */
    interface TestFileCleanUpExtension {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Mar 18 02:11:12 UTC 2022
    - 919 bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

            String classifier = artifact.getClassifier();
            String extension = artifact.getExtension();
            return getArtifactPath(groupId, artifactId, version, classifier, extension);
        }
    
        private Path getArtifactPath(
                String groupId, String artifactId, String version, String classifier, String extension) {
            Path repo = getProjectLocalRepo();
            return repo.resolve(groupId)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionMetaData.groovy

        def void addMixin(String plugin, String mixinClass) {
            mixinClasses.add(new MixinMetaData(plugin, mixinClass))
        }
    
        def void addExtension(String plugin, String extension, String extensionClass) {
            extensionClasses.add(new ExtensionMetaData(plugin, extension, extensionClass))
        }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. cmd/streaming-signature-v4_test.go

    			[]byte("10000"),
    			[]byte("ad80c730a21e5b8d04586a2213dd63b9a0e99e0e2307b0ade35a65485a288648"),
    		},
    	}
    	// Validate chunk extension removal.
    	for i, tt := range tests {
    		// Extract chunk size and chunk signature after parsing a standard chunk-extension format.
    		hexChunkSize, hexChunkSignature := parseS3ChunkExtension(tt.buf)
    		if !bytes.Equal(hexChunkSize, tt.chunkSize) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top