Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 223 for Sall (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         * Contains the dependency resolution metadata for each project.
         */
        ProjectMetadata(false),
        BuildFingerprint(true),
        ProjectFingerprint(true),
    
        /**
         * The index file that points to all of these things
         */
        Entry(false)
    }
    
    
    internal
    interface ConfigurationCacheStateFile {
        val exists: Boolean
        val stateType: StateType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. 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)
  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-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)
  8. 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)
  9. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/DefaultExecutorFactoryTest.groovy

            def failure1 = new RuntimeException()
            def action1 = new Callable<Void>() {
                Void call() {
                    instant.broken1
                    throw failure1
                }
            }
            def failure2 = new RuntimeException()
            def action2 = new Callable<Void>() {
                Void call() {
                    instant.broken2
                    throw failure2
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            def result2 = recreate(original2).call()
    
            result2 == "123"
        }
    
        def "class can include only serializable lambda"() {
            given:
            def cl = transformAndLoad(ClassWithSerializableLambda, ClassWithSerializableLambda.SerializableThing)
    
            expect:
            def original = cl.thing(123)
            def result = recreate(original).call()
    
            result == "123"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top