Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for projectName (1.83 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/androidhomewarmup/AndroidHomeWarmupTask.kt

                val projectName = "platform-${version.compileSdk}-buildtools-${version.buildTools.replace(".", "-")}"
                val projectDir = File(warmupProjectsDirectory.get().asFile, projectName)
    
                logger.lifecycle("Generating project: $projectName")
                generateProject(projectDir, version)
    
                logger.lifecycle("Building project: $projectName")
                buildProject(projectDir)
            }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 09 09:24:29 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. .github/workflows/deploy-docs.yml

          - name: Deploy to Cloudflare Pages
            # hashFiles returns an empty string if there are no files
            if: hashFiles('./site/*')
            id: deploy
            env:
              PROJECT_NAME: fastapitiangolo
              BRANCH: ${{ ( github.event.workflow_run.head_repository.full_name == github.repository && github.event.workflow_run.head_branch == 'master' && 'main' ) || ( github.event.workflow_run.head_sha ) }}
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 21 13:03:21 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

        }
    
        interface ExpectedResult {}
    
        static class SelectedProjectsResult implements ExpectedResult {
            final List<String> projectNames;
    
            SelectedProjectsResult(List<String> projectSelectors) {
                this.projectNames = projectSelectors;
            }
        }
    
        static class ExceptionThrown implements ExpectedResult {
            final Class<? extends Throwable> expected;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 20:39:03 UTC 2025
    - 28K bytes
    - Viewed (0)
Back to top