Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 549 for Sall (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

            stderr.reset()
        }
    
        boolean assertTaskExecuted(String taskPath) {
            assert events.all.findAll { it instanceof TaskFinishEvent }.any { it.descriptor.taskPath == taskPath }
            true
        }
    
        def assertTaskNotExecuted(String taskPath) {
            assert !events.all.findAll { it instanceof TaskFinishEvent }.any { it.descriptor.taskPath == taskPath }
            true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/WarningMode.java

     * @since 4.5
     */
    public enum WarningMode {
        /**
         * Show all warnings.
         */
        All(true),
    
        /**
         * Display a summary at the end of the build instead of rendering all warnings into the console output.
         */
        Summary(false),
    
        /**
         * No deprecation warnings at all.
         */
        None(false),
    
        /**
         * Show all warnings and fail the build if any warning present
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

         * The implementation may throw, and the exception will be propagated to the caller.
         * The implementation may choose to delegate to the original Groovy implementation by returning the value of {@code invocation.callOriginal()}.
         *
         * @param invocation the arguments supplied by the caller
         * @param consumer the class that invokes the intercepted call
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/AnnotatedServiceLifecycleHandler.java

    /**
     * Service instances can implement this interface to apply some lifecycle to all services annotation with a given annotation.
     */
    public interface AnnotatedServiceLifecycleHandler {
        List<Class<? extends Annotation>> getAnnotations();
    
        /**
         * When not null, all services are considered to have the implicit annotation
         * and the handler should be notified about all registrations.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:35:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalConfigurationGraphResolveMetadata.java

        /**
         * Returns a copy of this configuration metadata, except with all artifacts transformed by the given transformer.
         *
         * @param artifactTransformer A transformer applied to all artifacts and sub-variant artifacts.
         *
         * @return A copy of this metadata, with the given transformer applied to all artifacts.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top