Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 573 for Sall (0.09 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            try {
                deleteDir();
            } catch (RuntimeException e) {
                // Ignore
            }
            return this;
        }
    
        /**
         * Recursively delete this directory, reporting all failed paths.
         */
        public TestFile forceDeleteDir() throws IOException {
            if (isDirectory()) {
                if (FileUtils.isSymlink(this)) {
                    if (!delete()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonFactoryTest.groovy

            1 * buildOperationRunner.call(_)
        }
    
        def "build worker operation is finished even if worker fails"() {
            when:
            factory.getWorker(requirement).execute(spec)
    
            then:
            1 * clientsManager.reserveIdleClient(options) >> client
            1 * buildOperationRunner.call(_) >> { args -> args[0].call() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

     * </ul>
     * </p>
     *
     * <p>
     * There are {@code call(...)} equivalents for all the {@code add(...)} and {@code addConstraint(...)} methods in {@link DependencyCollector}.
     * </p>
     *
     * <p>
     * There are {@code call(...)} equivalents for all the {@code modify(...)} methods in {@link DependencyModifier}.
     * </p>
     *
     * @see Dependencies
     * @see DependencyCollector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

            String methodName = call.getMethodAsString();
            if (call.isImplicitThis() && methodName != null && methodName.equals(DOLLAR)) {
                visitInputMethod(call);
                return;
            }
            // visit the method call, because one of the args may be an input method call
            super.visitMethodCallExpression(call);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

             *
             * Because of it doing so, our decorated call site is removed from the dynamic invocation code path, and we lose the ability to track dynamic call entry points. <p>
             *
             * To fix that, we store the optimized call site that the Groovy runtime created (and we delegate to it in subsequent calls), and we put a reference to our
             * decorated call site back into the call site array.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

             * MetaClass.getMetaProperty(name) is very expensive when the property is not known.
             * Instead, we reach into the meta class to call a much more efficient lookup method.
             * Since we do this in a hot code path, we also reuse the argument array used for the
             * reflective call to save memory.
             */
            @Nullable
            protected MetaProperty lookupProperty(MetaClass metaClass, String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

         *
         * @param callable The callable to call
         * @param <T> Callable's return type
         * @return The value returned by {@link Callable#call()}
         */
        @Nullable
        public static <T> T uncheckedCall(Callable<T> callable) {
            try {
                return callable.call();
            } catch (Exception e) {
                throw throwAsUncheckedException(e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

     * <strong>This type should only be extended and/or thrown by Gradle internal code.</strong>
     */
    @Contextual
    @HasInternalProtocol
    public class ResolveException extends DefaultMultiCauseException {
    
        /**
         * Do not call this constructor.
         *
         * @deprecated This constructor will be removed in 9.0
         */
        @Deprecated
        public ResolveException(String message, Throwable cause) {
            super(message, cause);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

        String getName();
    
        /**
         * This method or {@link #withInputStream(IoFunction)} ()} may or may not support being called more than
         * once per entry.  Use {@link #canReopen()} to determine if more than one call is supported.
         */
        byte[] getContent() throws IOException;
    
        /**
         * Declare an action to be run against this ZipEntry's content as a {@link InputStream}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

            extensionMapping.map("sourceSets", Callables.returning(new ArrayList<>()));
            extensionMapping.map("reportsDir", new Callable<File>() {
                @Override
                public File call() {
                    return project.getExtensions().getByType(ReportingExtension.class).file(getReportName());
                }
            });
            withBasePlugin(new Action<Plugin>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top