Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 887 for evacuate (0.28 sec)

  1. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/groovy/settings.gradle

    rootProject.name = 'project-evaluate-events'
    include 'project-a', 'project-b'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 139 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/kotlin/settings.gradle.kts

    rootProject.name = "project-evaluate-events"
    include("project-a", "project-b")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 144 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/groovy/quickstart/groovy/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)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

        /**
         * Returns the set of source paths for this collection. The paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @return The set of source paths. Returns an empty set if none.
         */
        Set<Object> getFrom();
    
        /**
         * Sets the source paths for this collection. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @param paths The paths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileTree.java

         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         * @return this
         */
        ConfigurableFileTree setBuiltBy(Iterable<?> tasks);
    
        /**
         * Registers some tasks which build the files of this collection.
         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4JUnitIntegrationTest.groovy

                    @Override
                    protected Statement methodBlock(final FrameworkMethod method) {
                        return new Statement() {
                            @Override
                            public void evaluate() throws Throwable {
    
                                if(isClassUnderTestLoaded){
                                    throw new RuntimeException("Test Class should not be loaded");
                                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

            final Statement statement = resources.apply(base, method, target);
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    String className = method.getMethod().getDeclaringClass().getSimpleName();
                    maybeCopy(String.format("%s/shared", className));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. test/fixedbugs/bug081.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    const x x = 2 // ERROR "loop|type|cycle"
    
    /*
    bug081.go:3: first constant must evaluate an expression
    Bus error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 303 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Represents the lifecycle state of a project, with regard to configuration.
     *
     * There are three synonymous terms mixed in here (configure, evaluate, execute) for legacy reasons.
     * Where not bound to backwards compatibility constraints, we use the term “configure”.
     *
     * @see org.gradle.configuration.project.LifecycleProjectEvaluator
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            ComponentUtil.register(scriptEngineFactory, "scriptEngineFactory");
            new AbstractScriptEngine() {
    
                @Override
                public Object evaluate(String template, Map<String, Object> paramMap) {
                    final Map<String, Object> bindingMap = new HashMap<>(paramMap);
                    bindingMap.put("container", SingletonLaContainerFactory.getContainer());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top