Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 127 for projectFor (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                    doLast {
                        outputFile.text = "first"
                    }
                }
                task filteredConsumer(type: Zip) {
                    from(project.projectDir) {
                        include 'src/**'
                    }
                    destinationDirectory = file("build")
                    archiveBaseName = "output3"
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/build.gradle.kts

        generatorClasspath(project(":analysis:analysis-api-fir:analysis-api-fir-generator"))
    }
    
    val generateCode by tasks.registering(NoDebugJavaExec::class) {
        val generatorRoot = "$projectDir/analysis/analysis-api-fir/analysis-api-fir-generator/src/"
    
        val generatorConfigurationFiles = fileTree(generatorRoot) {
            include("**/*.kt")
        }
    
        inputs.files(generatorConfigurationFiles)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

            return builder.build()
        }
    
        static ProjectInternal createChildProject(ProjectInternal parent, String name, File projectDir = null) {
            return ProjectBuilder
                .builder()
                .withName(name)
                .withParent(parent)
                .withProjectDir(projectDir)
                .build()
        }
    
        static groovy.lang.Script createScript(String code) {
            new GroovyShell().parse(code)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/AbstractBuildState.java

            return projectStateRegistry.get();
        }
    
        @Override
        public BuildProjectRegistry getProjects() {
            return getProjectStateRegistry().projectsFor(getBuildIdentifier());
        }
    
        protected BuildLifecycleController getBuildController() {
            return buildLifecycleController.get();
        }
    
        @Override
        public void ensureProjectsLoaded() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

                            ? "Calculating task graph as no (cached configuration|configuration cache) is available"
                            : "Reusing configuration cache"
                        File buildLog = new File(invocationSettings.projectDir, "profile.log")
    
                        def found = Files.lines(buildLog.toPath()).withCloseable { lines ->
                            def pattern = Pattern.compile(tag)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

            ex.message.contains('--foreground')
        }
    
        def "can overwrite project dir via build arguments"() {
            given:
            file('otherDir').createDir()
            file('otherDir/build.gradle') << "assert projectDir.name.endsWith('otherDir')"
            file('otherDir/settings.gradle') << ''
    
            when:
            withConnection {
                it.newBuild().withArguments('-p', 'otherDir').run()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // Extract bias to cifg gates via slicing the bias tensor
      SetBiasToCellGate();
      SetBiasToInputGate();
      SetBiasToForgetGate();
      SetBiasToOutputGate();
    
      // Extract projection and set an empty projection bias
      SetProjection();
      SetProjectionBias();
    
      // Set the variable tensors
      SetInputActivationState();
      SetInputCellState();
    
      // Extract the layer norm coefficients
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            this.classLoaderScope = selfClassLoaderScope;
            this.baseClassLoaderScope = baseClassLoaderScope;
            this.rootProject = parent != null ? parent.getRootProject() : this;
            this.projectDir = projectDir;
            this.buildFile = buildFile;
            this.parent = parent;
            this.name = name;
            this.state = new ProjectStateInternal();
            this.buildScriptSource = buildScriptSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

        ): Boolean {
            if (typeArguments.isEmpty()) return false
            if (!visited.add(this)) return true
            for (projection in typeArguments) {
                // E.g., Test : Comparable<Test>
                val type = (projection as? ConeKotlinTypeProjection)?.type ?: continue
                // E.g., Comparable<Test>
                val newType = substituteOrNull(type) ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

                assert buildPath == ':'
                assert rootProject.projectDir == rootDir.absolutePath
                assert rootProject.buildFile == rootDir.file("build.gradle").absolutePath
            }
            with(projectsIdentified[1].details) {
                assert buildPath == childBuild
                assert rootProject.projectDir == childDir.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top