Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,084 for Grappler (0.13 sec)

  1. 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)
  2. 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)
  3. .teamcity/mvnw

    # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
    # This allows using the maven wrapper in projects that prohibit checking in binary data.
    ##########################################################################################
    if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
        if [ "$MVNW_VERBOSE" = true ]; then
          echo "Found .mvn/wrapper/maven-wrapper.jar"
        fi
    else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  4. mvnw

        if [ -n "$MVNW_REPOURL" ]; then
          wrapperUrl="$MVNW_REPOURL/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar"
        else
          wrapperUrl="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar"
        fi
        while IFS="=" read -r key value; do
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_basics.adoc

    A Gradle project will look similar to the following:
    
    [source,text]
    ----
    project
    ├── gradle                              // <1>
    │   ├── libs.versions.toml              // <2>
    │   └── wrapper
    │       ├── gradle-wrapper.jar
    │       └── gradle-wrapper.properties
    ├── gradlew                             // <3>
    ├── gradlew.bat                         // <3>
    ├── settings.gradle(.kts)               // <4>
    ├── subproject-a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. mvnw.cmd

    set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
    set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
    
    set WRAPPER_URL="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar"
    
    FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
        IF "%%A"=="wrapperUrl" SET WRAPPER_URL=%%B
    )
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. .teamcity/.mvn/wrapper/MavenWrapperDownloader.java

                ".mvn/wrapper/maven-wrapper.properties";
    
        /**
         * Path where the maven-wrapper.jar will be saved to.
         */
        private static final String MAVEN_WRAPPER_JAR_PATH =
                ".mvn/wrapper/maven-wrapper.jar";
    
        /**
         * Name of the property which should be used to override the default download url for the wrapper.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 4.8K bytes
    - Viewed (0)
Back to top