Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for notes (1.29 sec)

  1. JavadocStyleGuide.md

    | 10 | `@implNote`   | Adds a “Implementation Note” heading                                           | This section contains informative notes about the implementation, such as advice to implementors, or performance characteristics that are specific to the implementation in this class of this version of the JDK  |
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    * For Javadocs, follow the [Javadoc Style Guide](JavadocStyleGuide.md).
    * For new features, the feature should be mentioned in the [Release Notes](platforms/documentation/docs/src/docs/release/notes.md).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

     *     sourceCompatibility = JavaVersion.VERSION_1_7
     *     targetCompatibility = JavaVersion.VERSION_1_7
     * }
     * ```
     * ## Implementation Notes
     * External plugin dependencies are declared as regular artifact dependencies but a more
     * semantic preserving model could be introduced in the future.
     *
     * ### Type-safe accessors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

                }
                nodes.add(node)
            }
            // Note that using the ImmutableSet retains the original ordering of entry nodes.
            val entryNodes = ImmutableSet.builder<Node>()
            readCollection {
                entryNodes.add(nodesById.getValue(readSmallInt()))
            }
            nodes.forEach { node ->
                readSuccessorReferencesOf(node, nodesById)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

        }
    
        /**
         * A key for merging document nodes.
         * The scope of this key is a particular object's configuring block.
         *
         * Keys from the configuring blocks of different objects should never get matched against each other.
         */
        sealed interface MergeKey {
            /**
             * Nodes having this key are unique and never get merged with any other nodes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/TransformedProjectArtifactSetCodec.kt

            return decodePreservingSharedIdentity {
                val targetVariant = readNonNull<ComponentVariantIdentifier>()
                val nodes: List<TransformStepNode> = readList().uncheckedCast()
                TransformedProjectArtifactSet(targetVariant, nodes)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override val scheduledWork: ScheduledWork
                get() {
                    lateinit var work: ScheduledWork
                    gradle.taskGraph.visitScheduledNodes { nodes, entryNodes -> work = ScheduledWork(nodes, entryNodes) }
                    return work
                }
        }
    
        private
        inner class DefaultConfigurationCacheBuild(
            override val state: BuildState,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.binarycompatibility
    
    import org.jsoup.Jsoup
    import org.jsoup.nodes.Document
    import java.io.File
    
    
    internal
    fun scrapeRichReport(richReportFile: File): RichReport =
    
        Jsoup.parse(richReportFile, "UTF-8").run {
            RichReport(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

            }
        }
    
        /**
         * This is a caveat.
         * The Groovy DSL provider relies on exceptions being analyzed up the stack.
         * See [org.gradle.initialization.DefaultExceptionAnalyser.transform], note the comments.
         * The Kotlin DSL provider handles this in isolation,
         * thus hiding the location of exceptions thrown by groovy scripts applied from kotlin scripts.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                }
            }
        }
    
        private
        fun collectProjects(projects: BuildProjectRegistry, nodes: List<Node>, relevantProjectsRegistry: RelevantProjectsRegistry): List<CachedProjectState> {
            val relevantProjects = relevantProjectsRegistry.relevantProjects(nodes)
            return projects.allProjects.map { project ->
                val mutableModel = project.mutableModel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top