Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for stroke (0.21 sec)

  1. architecture/README.md

        documentation["documentation module"]
        style documentation stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
        ide["ide module"]
        style ide stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
        subgraph software["software platform"]
        end
        style software fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        software --> core
    
        subgraph jvm["jvm platform"]
        end
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 22 01:31:52 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. architecture/readme.md

    core_runtime["core-runtime module"]
    style core_runtime stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    
    core_configuration["core-configuration module"]
    style core_configuration stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    
    core_execution["core-execution module"]
    style core_execution stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    end
    style core fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    
    documentation["documentation module"]
    Plain Text
    - Registered: Wed Feb 21 11:36:11 GMT 2024
    - Last Modified: Wed Feb 14 20:23:24 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

            findLatest("kotlin", "org.jetbrains.kotlin:kotlin-gradle-plugin:(1.4,)", versionProperties)
    
            store(versionProperties)
        }
    
        private
        fun store(properties: Properties) {
            PropertiesUtils.store(
                properties, libraryVersionFile.get().asFile,
                "Generated file, please do not edit - Version values used in build-init templates",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 19 11:19:07 GMT 2023
    - 5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/StageProject.kt

    import jetbrains.buildServer.configs.kotlin.RelativeId
    import model.CIBuildModel
    import model.FlameGraphGeneration
    import model.FunctionalTestBucketProvider
    import model.GRADLE_BUILD_SMOKE_TEST_NAME
    import model.PerformanceTestBucketProvider
    import model.PerformanceTestCoverage
    import model.SpecificBuild
    import model.Stage
    import model.StageName
    import model.TestCoverage
    import model.TestType
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeTest.kt

    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that verifies Gradle can be used with popular third party plugins.
     */
    @CacheableTask
    abstract class SmokeTest : DistributionTest() {
        override val prefix = "smoke"
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 889 bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/JvmCategory.kt

        MIN_VERSION_WINDOWS(JvmVendor.openjdk, JvmVersion.java8),
        MAX_LTS_VERSION(JvmVendor.openjdk, JvmVersion.java21),
        MAX_VERSION(JvmVendor.openjdk, JvmVersion.java22),
        SANTA_TRACKER_SMOKE_TEST_VERSION(JvmVendor.openjdk, JvmVersion.java17),
        EXPERIMENTAL_VERSION(JvmVendor.openjdk, JvmVersion.java22)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Apr 06 02:21:32 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild/kotlin/tasks/ParameterNamesIndex.kt

            val index = extractParameterNamesIndexFrom(sources, classpath)
            destinationFile.parentFile.mkdirs()
            ReproduciblePropertiesWriter.store(index, destinationFile)
        }
    
        private
        fun extractParameterNamesIndexFrom(sources: Set<File>, classpath: Set<File>): Map<String, String> =
            isolatedClassLoaderFor(classpath).use { loader ->
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepository.java

                }
            } catch (Exception e) {
                throw new GradleException(String.format("Could not load meta-data from %s.", repoFile), e);
            }
        }
    
        public void store(File repoFile) {
            try {
                FileOutputStream outputStream = new FileOutputStream(repoFile);
                try {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

                }
                model.classes.each {
                    generateDocForType(root.ownerDocument, model, linkRepository, it)
                }
            }
    
            linkRepository.store(linksFile.get().asFile)
        }
    
        @CompileStatic
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

            then:
            format(result.docbook) == '''<para><emphasis>text</emphasis></para>'''
        }
    
        def convertsAStrongElementToAnEmphasisElement() {
            _ * classMetaData.rawCommentText >> '<strong>text</strong>'
    
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook) == '''<para><emphasis>text</emphasis></para>'''
        }
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 14.2K bytes
    - Viewed (0)
Back to top