Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 707 for extension (0.28 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java

            GradleDocumentationExtension extension = project.getExtensions().getByType(GradleDocumentationExtension.class);
            generateDslReference(project, layout, tasks, objects, extension);
        }
    
        private void generateDslReference(Project project, ProjectLayout layout, TaskContainer tasks, ObjectFactory objects, GradleDocumentationExtension extension) {
            DslReference dslReference = extension.getDslReference();
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jul 26 08:15:16 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

        )
    
      /**
       * ```
       * Extension ::= SEQUENCE  {
       *   extnID      OBJECT IDENTIFIER,
       *   critical    BOOLEAN DEFAULT FALSE,
       *   extnValue   OCTET STRING
       *     -- contains the DER encoding of an ASN.1 value
       *     -- corresponding to the extension type identified
       *     -- by extnID
       * }
       * ```
       */
      internal val extension: BasicDerAdapter<Extension> =
        Adapters.sequence(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionPropertiesSummaryRenderer.java

        public ExtensionPropertiesSummaryRenderer(PropertyTableRenderer propertyTableRenderer) {
            this.propertyTableRenderer = propertyTableRenderer;
        }
    
        public void renderTo(ClassExtensionDoc extension, Element parent) {
            if (extension.getExtensionProperties().isEmpty()) {
                return;
            }
    
            Document document = parent.getOwnerDocument();
    
            Element section = document.createElement("section");
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

     * limitations under the License.
     */
    
    import gradlebuild.testcleanup.TestFilesCleanupRootPlugin
    import gradlebuild.testcleanup.extension.TestFileCleanUpExtension
    import gradlebuild.testcleanup.extension.TestFilesCleanupBuildServiceRootExtension
    import gradlebuild.testcleanup.extension.TestFilesCleanupProjectState
    
    /**
     * When run from a Continuous Integration environment, we only want to archive a subset of reports, mostly for
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/ExtensionConfigurationModule.java

        private final CoreExtensionEntry extension;
        private final Function<String, String> callback;
        private final DefaultInterpolator interpolator = new DefaultInterpolator();
    
        public ExtensionConfigurationModule(CoreExtensionEntry extension, Function<String, String> callback) {
            this.extension = extension;
            this.callback = callback;
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifactHandler.java

        private final String classifier;
    
        private final String extension;
    
        private final String packaging;
    
        TransformedArtifactHandler(String classifier, String extension, String packaging) {
            this.classifier = classifier;
            this.extension = requireNonNull(extension);
            this.packaging = requireNonNull(packaging);
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. compat/maven-model/src/test/java/org/apache/maven/model/ExtensionTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Extension}.
     *
     */
    class ExtensionTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Extension().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Extension().equals(null));
    
            new Extension().equals(new Extension());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

         * Creates a new class realm for the specified build extension.
         *
         * @param extension The extension plugin for which to create a realm, must not be {@code null}.
         * @param artifacts The artifacts to add to the class realm, may be {@code null}. Unresolved artifacts (i.e. with a
         *            missing file) will automatically be excluded from the realm.
         * @return The new extension realm, never {@code null}.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

            ?.value
        }
    
      val subjectAlternativeNames: Extension?
        get() {
          return tbsCertificate.extensions.firstOrNull {
            it.id == ObjectIdentifiers.SUBJECT_ALTERNATIVE_NAME
          }
        }
    
      val basicConstraints: Extension
        get() {
          return tbsCertificate.extensions.first {
            it.id == ObjectIdentifiers.BASIC_CONSTRAINTS
          }
        }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top