Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uploader (0.23 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/kotlin/tasks/ParameterNamesIndex.kt

        }
    
        private
        fun extractParameterNamesIndexFrom(sources: Set<File>, classpath: Set<File>): Map<String, String> =
            isolatedClassLoaderFor(classpath).use { loader ->
                javaProjectBuilderFor(loader)
                    .sequenceOfJavaSourcesFrom(sources)
                    .flatMap { it.classes.asSequence().filter { it.isPublic } }
    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)
  2. .github/workflows/contributor-pr.yml

              cache-read-only: ${{ github.ref != 'refs/heads/master' }}
          - run: ./gradlew compileAll --no-configuration-cache -DdisableLocalCache=true ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }}
          - uses: actions/upload-artifact@v4
            with:
              name: build-receipt.properties
              path: platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        outputs:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 08:50:27 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            assertEquals(expectedGradleParams, checkReady.gradleParams)
    
            val upload = gradleStep(steps, 1)
            upload.assertTasks("prepRc uploadAll")
            assertEquals(expectedGradleParams, upload.gradleParams)
    
            val promote = gradleStep(steps, 2)
            promote.assertTasks("prepRc promoteRc")
            assertEquals(expectedGradleParams, upload.gradleParams)
        }
    
        @ParameterizedTest
        @CsvSource(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 13 14:18:23 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt

        vcsRootId = gradlePromotionBranches
    ) {
        init {
            id("Promotion_SnapshotFromQuickFeedbackStepUpload")
            name = "Nightly Snapshot (from QuickFeedback) - Upload"
            description = "Builds and uploads the latest successful changes on '${branch.branchName}' from Quick Feedback as a new distribution"
    
            steps {
                buildStep(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jul 25 21:00:40 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt

            dir.resolve(classFilePath).takeIf { it.isFile }?.let { classFile -> { classFile.readBytes() } }
        }
    
        private
        fun loaderClassBytesIndexFor(loader: ClassLoader): ClassBytesIndex = { classFilePath ->
            loader.getResource(classFilePath)?.let {
                { loader.getResourceAsStream(classFilePath).use { it!!.readBytes() } }
            }
        }
    
        private
        fun openJarFile(file: File) =
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sat Sep 30 16:17:27 GMT 2023
    - 6.1K bytes
    - Viewed (0)
Back to top