Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 223 for Sall (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                    result -> result.fold(
                        file -> left(Convert.fileToURL(file)),
                        transform -> right(() -> Convert.fileToURL(transform.call()))
                    )
                );
            }
            return Optional.of(left(original));
        }
    
        private Optional<Either<File, Callable<File>>> cachedFile(
            File original,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

            new GroovyShell().parse(code)
        }
    
        static Object call(String text, Object... params) {
            toClosure(text).call(*params)
        }
    
        static Closure toClosure(String text) {
            return new GroovyShell().evaluate("return " + text)
        }
    
        static Closure toClosure(TestClosure closure) {
            return { param -> closure.call(param) }
        }
    
        static Closure returns(Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    This image reveals that the repository contains a version of `com.google.guava:guava` with a moderate vulnerability.
    
    image::ci-systems/github-actions-dependency-graph.png[View dependency graph]
    
    === Viewing all dependency alerts
    
    You can view a list of all vulnerabilities by navigating to `Security -> Dependabot`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top