Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 711 for Sall (0.22 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. 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)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutExtension.java

                Object[] param = new Object[paramCount];
                for (int i = 0; i < paramCount; i++) {
                    param[i] = this;
                }
                if (((Closure<Boolean>) constructor.newInstance(param)).call()) {
                    runnable.run();
                }
            } catch (Throwable t) {
                throw new RuntimeException(t);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

         */
        void loadGradlePropertiesFrom(File settingsDir, boolean setSystemProperties);
    
        /**
         * Unloads the properties so the next call to {@link #loadGradlePropertiesFrom(File, boolean)} would reload them and
         * re-evaluate any property defining system properties and environment variables.
         */
        void unloadGradleProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_prod.h

    //  private:
    //   void MyMethod();
    //   FRIEND_TEST(MyClassTest, MyMethod);
    // };
    //
    // class MyClassTest : public testing::Test {
    //   // ...
    // };
    //
    // TEST_F(MyClassTest, MyMethod) {
    //   // Can call MyClass::MyMethod() here.
    // }
    
    #define FRIEND_TEST(test_case_name, test_name)\
    friend class test_case_name##_##test_name##_Test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K 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. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/AddSoftwareTypesAsExtensionsPluginTargetTest.groovy

            1 * target.getExtensions() >> extensions
            1 * softwareType.modelPublicType() >> Foo.class
            1 * softwareType.name() >> "foo"
            1 * propertyValue.call() >> foo
            1 * extensions.add(Foo.class, "foo", foo)
    
            and:
            1 * delegate.applyImperative(null, plugin)
        }
    
        def "does not add software types for plugins that are not registered"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. 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)
Back to top