Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 260 for Sall (0.03 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/documentation/docs/src/docs/dsl/dsl.xml

            <para>A build script is made up of zero or more statements and script blocks. Statements can include method calls,
                property assignments, and local variable definitions. A script block is a method call which takes a closure
                as a parameter. The closure is treated as a <firstterm>configuration closure</firstterm> which configures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // This file was GENERATED by command:
    //     pump.py gtest-tuple.h.pump
    // DO NOT EDIT BY HAND!!!
    
    // Copyright 2009 Google Inc.
    // All Rights Reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

         */
        public void expectConcurrent(ExpectedRequest... expectedCalls) {
            List<ResourceExpectation> expectations = new ArrayList<>();
            for (ExpectedRequest call : expectedCalls) {
                expectations.add((ResourceExpectation) call);
            }
            addNonBlockingHandler(expectations);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

                    switch (value.getMaximumNumberOfParameters()) {
                        case 0:
                            return value.call();
                        case 1:
                            return value.call(convention);
                        default:
                            return value.call(convention, conventionAwareObject);
                    }
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeClassSourceGenerator.java

                default:
                    throw new UnsupportedOperationException("Generating get call for type: " + upgradedPropertyType.asType() + " is not supported");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:11:23 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top