Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 887 for evacuate (0.13 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildDependentsPerformanceTest.groovy

        )
        def "run #task"() {
            // TODO Enable once runnable on CI (google test & target platform)
            // 'largeNativeBuild'     | 'project432:buildDependentsExternalComponent111'
            // TODO Re-evaluate this scenario: memory consumption stress case, gradleOpts = ['-Xms4g', '-Xmx4g']
            // The generated dependency graph is rather complex and deep, unrealistic?
            // 'nativeDependentsDeep' | 'libA0:buildDependentsLibA0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

                // user logic registered _after_ listener registered
                gradle.projectsEvaluated {
                    println "projects evaluated"
                    System.err.println "projects evaluated"
                }
            """
    
            runAndFail("t")
    
            then:
            outputContains("projects evaluated")
            output.matches("""(?s).*
    1 actionable task: 1 executed.*
    failure message: Execution failed for task ':t'.
    .*""")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/ArchiveOperations.java

         * The path is evaluated as per {@link Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link Project#file(Object)}.
         * @since 7.0
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
         * The path is evaluated as per {@link Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipsePluginTest.groovy

        }
    
        def applyToJavaProject_shouldOnlyHaveProjectAndClasspathTaskForJava() {
            when:
            eclipsePlugin.apply(project)
            project.apply(plugin: 'java-base')
            project.evaluate()
            then:
            assertThatCleanEclipseDependsOn(project, project.cleanEclipseProject)
            assertThatCleanEclipseDependsOn(project, project.cleanEclipseClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

            }
            changed
        }
    
        Object evaluate(@GroovyBuildScriptLanguage String script) {
            CompilerConfiguration config = new CompilerConfiguration()
            config.classpath.add("${targetDir}/$lang/$sourceSet".toString())
            new GroovyShell(config).evaluate(script)
        }
    
        void execute(@GroovyBuildScriptLanguage String script) {
            evaluate(script)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/util/internal/RedirectStdOutAndErr.java

        @Override
        public Statement apply(final Statement base, FrameworkMethod method, Object target) {
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    originalStdOut = System.out;
                    originalStdErr = System.err;
                    stdOutRouter.setOut(originalStdOut);
                    stdErrRouter.setOut(originalStdErr);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/BuildListener.java

    public interface BuildListener {
    
        /**
         * Called when the build settings are about to be loaded and evaluated.
         *
         * @param settings The settings. Never null.
         * @since 6.0
         */
        default void beforeSettings(Settings settings) {}
    
        /**
         * <p>Called when the build settings have been loaded and evaluated. The settings object is fully configured and is
         * ready to use to load the build projects.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/interface.go

    type PreFilterExtensions interface {
    	// AddPod is called by the framework while trying to evaluate the impact
    	// of adding podToAdd to the node while scheduling podToSchedule.
    	AddPod(ctx context.Context, state *CycleState, podToSchedule *v1.Pod, podInfoToAdd *PodInfo, nodeInfo *NodeInfo) *Status
    	// RemovePod is called by the framework while trying to evaluate the impact
    	// of removing podToRemove from the node while scheduling podToSchedule.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/resources/ResourceHandler.java

         * The path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link org.gradle.api.Project#file(Object)}.
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
         * The path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/groovy/quickstart/kotlin/src/main/groovy/org/gradle/Person.groovy

                name = str.text.trim()
            }
            getClass().getResourceAsStream('/script.groovy').withStream {InputStream str ->
                def shell = new GroovyShell()
                shell.person = this
                shell.evaluate(str.text)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 420 bytes
    - Viewed (0)
Back to top