Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 396 for Sall (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

     *          that this closure is now in the scope of an instrumented call, so changing its delegate must be reflected in updating the new delegate's
     *          metaclass for call interception.
     *     <li> Overrides {@link Closure#setDelegate}, adding a call to {@link InstrumentedGroovyMetaClassHelper#addInvocationHooksInClosureDispatchObject} with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                }
            });
    
            testComponent.getTestBinary().convention(project.provider(new Callable<CppTestExecutable>() {
                @Override
                public CppTestExecutable call() throws Exception {
                    return getAllBuildableTestExecutable()
                            .filter(it -> isCurrentArchitecture(it.getNativePlatform()))
                            .findFirst()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

         *
         * @param caller the lookup for the caller (JVM-supplied)
         * @param callType the type of the call (corresponds to {@link IndyInterface.CallType} constant)
         * @param type the call site type
         * @param name the real method name
         * @param flags call flags
         * @return the produced CallSite
         * @see IndyInterface
         */
        // Called by generated code
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    ```
    someTask {
        inputFile.from(jar.archivePath)
    }
    ```
    
    The `jar.archivePath` property is of type `File`, which doesn't carry any task dependency.
    It means that if you call `someTask` _after_ `jar` has been called, the task will succeed, but if the jar is removed, for example, the task would fail.
    
    To fix this, you can declare a `Property` as an input instead:
    
    ```
    someTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

                }
            }
    
            try {
                return invokeOriginal.call();
            } catch (Throwable e) {
                ThrowAsUnchecked.doThrow(e);
                throw new IllegalStateException("this is unreachable code, the call above should always throw an exception");
            }
        }
    
        //region implementations delegating to adaptee
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--warning-mode=(all,fail,none,summary)`::
    Specifies how to log warnings. Default is `summary`.
    +
    Set to `all` to log all warnings.
    +
    Set to `fail` to log all warnings and fail the build if there are any warnings.
    +
    Set to `summary` to suppress all warnings and log a summary at the end of the build.
    +
    Set to `none` to suppress all warnings, including the summary at the end of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     * task myTask(type: SomeType) { configure closure }
     * </pre>
     *
     * <p>Each task has a name, which can be used to refer to the task within its owning project, and a fully qualified
     * path, which is unique across all tasks in all projects. The path is the concatenation of the owning project's path
     * and the task's name. Path elements are separated using the {@value org.gradle.api.Project#PATH_SEPARATOR}
     * character.</p>
     *
     * <h3>Task Actions</h3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    }
    
    rootProject.name = 'tutorial'
    include('app')
    ----
    =====
    
    The `tutorial` root project includes the `app` subproject.
    The presence of the `include` call turns the `app` directory into a subproject.
    
    == Step 7. Understanding the Build script
    Each subproject contains its own `build.gradle(.kts)` file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        private transient MarkupBuilder suiteXmlBuilder;
    
        private final Cached<String> cachedSuiteXml = Cached.of(new Callable<String>() {
            @Override
            public String call() {
                return suiteXmlWriter != null ? suiteXmlWriter.toString() : null;
            }
        });
    
        private final File projectDir;
    
        @Inject
        public TestNGOptions(ProjectLayout projectLayout) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

                        tasks.all.logger.lifecycle("build finished from \${tasks.all.path}")
                    }
                }
    
                threaded {
                    println("threaded configuration output")
                }
    
                def threaded(Closure action) {
                    Thread.start(action).join()
                }
            """
    
            when:
            succeeds("all")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top