Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 157 for Header (0.34 sec)

  1. maven-model/src/main/java/org/apache/maven/model/io/xpp3/package-info.java

    // CHECKSTYLE_OFF: RegexpHeader|LineLength
    /**
     * XML reader and writer classes for Maven POM, generated from <code>maven.mdo</code> model.
     * These classes use
     * <a href="https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/xml/pull/package-summary.html">plexus-utils'
     * XML Pull Parser API</a> for their internal XML handling and
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 750 bytes
    - Viewed (0)
  2. maven-model/src/test/resources/xml/pom.xml

                    <template>src/main/mdo/merger.vm</template>
                    <template>src/main/mdo/transformer.vm</template>
                    <template>src/main/mdo/reader.vm</template>
                    <template>src/main/mdo/reader-ex.vm</template>
                    <template>src/main/mdo/writer.vm</template>
                    <template>src/main/mdo/writer-ex.vm</template>
                  </templates>
                  <params>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 14 08:23:18 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAnalysisApiSubstitutorsTest.kt

                    appendLine("${KaType::class.simpleName}: ${type.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substitute: ${substituted.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substituteOrNull: ${substitutedOrNull?.render(position = Variance.INVARIANT)}")
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationRendererProvider.kt

        /**
         * Render symbol into the representable Kotlin string
         */
        public fun KaDeclarationSymbol.render(renderer: KaDeclarationRenderer = KaDeclarationRendererForSource.WITH_QUALIFIED_NAMES): String =
            withValidityAssertion { analysisSession.symbolDeclarationRendererProvider.renderDeclaration(this, renderer) }
    
        /**
         * Render kotlin type into the representable Kotlin type string
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/contextReceivers/renderers/KtContextReceiverLabelRenderer.kt

    import org.jetbrains.kotlin.analysis.api.renderer.base.contextReceivers.KaContextReceiversRenderer
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.renderer.render
    
    public interface KaContextReceiverLabelRenderer {
        public fun renderLabel(
            analysisSession: KaSession,
            contextReceiver: KaContextReceiver,
            contextReceiversRenderer: KaContextReceiversRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationRequest.java

        /**
         * Gets the class loader from which to load any types referenced by the configuration. If unset, the class loader of
         * the bean class will be used.
         *
         * @return The class loader to load referenced types from or {@code null} if unset.
         */
        ClassLoader getClassLoader();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/AbstractDiagnosticsDataClassRenderer.kt

    abstract class AbstractDiagnosticsDataClassRenderer : DiagnosticListRenderer() {
        override fun render(file: File, diagnosticList: DiagnosticList, packageName: String, starImportsToAdd: Set<String>) {
            val hlDiagnosticsList = HLDiagnosticConverter.convert(diagnosticList)
            file.writeToFileUsingSmartPrinterIfFileContentChanged { render(hlDiagnosticsList, packageName) }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 18 18:42:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            prop.load(inStream);
            properties = prop;
        }
    
        @Override
        public synchronized void load(final Reader reader) throws IOException {
            final Properties prop = new Properties();
            lastModified = propertiesFile.lastModified();
            prop.load(reader);
            properties = prop;
        }
    
        @Override
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtDestructuringDeclarationRenderer.kt

                        { declarationRenderer.annotationRenderer.renderAnnotations(analysisSession, symbol, printer) },
                        {
                            // do not render (val a: Int, val b: Int), render `(a: Int, b: Int)` instead
                            val rendererWithoutValVar = declarationRenderer.with {
                                keywordsRenderer = keywordsRenderer.with {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/mdo/java/WrapperProperties.java

            return writeOperation(p -> p.merge(key, value, remappingFunction));
        }
    
        @Override
        public synchronized void load(Reader reader) throws IOException {
            try {
                writeOperationVoid(p -> {
                    try {
                        p.load(reader);
                    } catch (IOException e) {
                        throw new IOError(e);
                    }
                });
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top