Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 587 for Grappler (0.3 sec)

  1. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/CachingScriptSourceTest.groovy

        def "creates wrapper for script source when content is expensive to query"() {
            def scriptSource = Stub(ScriptSource)
            def resource = Stub(TextResource)
    
            scriptSource.resource >> resource
            resource.contentCached >> false
    
            expect:
            def wrapper = CachingScriptSource.of(scriptSource)
            wrapper instanceof CachingScriptSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 16 20:50:41 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/build.gradle.kts

        dependsOn(executableJar)
    }
    
    // https://github.com/gradle/gradle/issues/26658
    // Before introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper.jar and used in promotion build
    // After introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper-executable.jar and processed
    //   by gr8, then the processed `gradle-wrapper.jar` need to be copied back to build/libs for promotion build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/CandidateMethods.java

        }
    
        /**
         * @return All candidate methods indexed by signature equivalence
         */
        public Map<Equivalence.Wrapper<Method>, Collection<Method>> allMethods() {
            ImmutableMap.Builder<Equivalence.Wrapper<Method>, Collection<Method>> builder = ImmutableMap.builder();
            for (Map<Equivalence.Wrapper<Method>, Collection<Method>> candidatesForSomeName : candidates.values()) {
                builder.putAll(candidatesForSomeName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/wrapper/customized-task/groovy/build.gradle

    // tag::customized-wrapper-task[]
    tasks.named('wrapper') {
        distributionType = Wrapper.DistributionType.ALL
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 147 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    ----
    
    The `init` task generates the new project with the following structure:
    
    [source.multi-language-sample,kotlin]
    ----
    ├── gradle // <1>
    │   ├── libs.versions.toml // <2>
    │   └── wrapper
    │       ├── gradle-wrapper.jar
    │       └── gradle-wrapper.properties
    ├── gradlew // <3>
    ├── gradlew.bat // <3>
    ├── settings.gradle.kts // <4>
    └── ${subprojectName.raw}
        ├── build.gradle.kts // <5>
        └── src
            ├── main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Primitives.java

    /**
     * Contains static utility methods pertaining to primitive types and their corresponding wrapper
     * types.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Primitives {
      private Primitives() {}
    
      /** A map from primitive types to their corresponding wrapper types. */
      private static final Map<Class<?>, Class<?>> PRIMITIVE_TO_WRAPPER_TYPE;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/c/conversion_macros.h

      inline const cpp_impl *unwrap(const wrapper *w) {                            \
        return reinterpret_cast<const cpp_impl *>(w);                              \
      }                                                                            \
                                                                                   \
      inline wrapper *wrap(cpp_impl *i) { return reinterpret_cast<wrapper *>(i); } \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 04 16:24:03 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/WrapperPluginIntegrationTest.groovy

    class WrapperPluginIntegrationTest extends WellBehavedPluginTest {
        @Override
        String getMainTask() {
            return "wrapper"
        }
    
        def "wrapper task generates wrapper files"() {
            when:
            run 'wrapper'
    
            then:
            new WrapperTestFixture(testDirectory).generated()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

                withWelcomeMessageEnabled()
            }
        }
    
        def "wrapper does not render welcome message when executed in quiet mode"() {
            given:
            prepareWrapper()
    
            when:
            args '-q'
            result = wrapperExecuter.withTasks("emptyTask").run()
    
            then:
            result.output.empty
        }
    
        def "wrapper renders welcome message when executed the first time"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/AbstractDependenciesBuilder.groovy

        static class SimpleWrapper extends AbstractSection {
            private final String wrapper
            private final SectionBuilder section
    
            SimpleWrapper(String wrapper, SectionBuilder section) {
                this.wrapper = wrapper
                this.section = section
            }
    
            @Override
            String getGroovy() {
                "$wrapper(${section.generateSection(GradleDsl.GROOVY)})"
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top