Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,359 for Executable (0.23 sec)

  1. tensorflow/compiler/jit/device_compiler_client.h

          const XlaCompiler::CompilationResult& result) = 0;
    
      // Serializes an available `executable` to string using `ClientType` and
      // returns it.
      virtual absl::StatusOr<std::string> SerializeExecutable(
          const ExecutableType& executable) = 0;
    
      // Compiles `result` (HLO) to a serializable executable (eg.
      // xla::AotCompilationResult) using `ClientType`, serializes it to string and
      // returns it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

        }
    
        def "is compatible with same executable"() {
            def other = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
    
            when:
            options.executable = "foo"
            other.executable = "foo"
    
            then:
            options.isCompatibleWith(other)
        }
    
        def "is not compatible with different executables"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            tool chain: Tool chain 'clang' (Clang)
            static library file: build/libs/hello/static/libhello.a
    
    Native executable 'main'
    ------------------------
    
    Source sets
        C++ source 'main:cpp'
            srcDir: src/main/cpp
    
    Binaries
        Executable 'main:executable'
            build using task: :mainExecutable
            install using task: :installMainExecutable
            build type: build type 'debug'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: anonymous-library
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 150 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildGitClone.sample.conf

    commands: [{
        executable: gradle
        args: clean cloneGradleProfiler
    }, {
        executable: gradle
        args: cloneGradleProfiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/base/customExternalTask/tests/externalTask.sample.conf

    commands: [{
        execution-subdirectory: task
        executable: gradle
        args: check publish
    }, {
        execution-subdirectory: consumer
        executable: gradle
        args: greeting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 180 bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaLauncher.java

    import org.gradle.api.tasks.Nested;
    
    /**
     * A java executable used to execute applications or run tests.
     *
     * @since 6.7
     */
    public interface JavaLauncher {
    
        /**
         * Returns metadata information about this tool
         *
         * @return the tool metadata
         */
        @Nested
        JavaInstallationMetadata getMetadata();
    
        /**
         * Returns the path to the executable for this tool
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: build-conventions
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 150 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskRemovedInput.sample.conf

    commands: [{
        executable: gradle
        args: originalInputs incrementalReverse
        flags: --quiet
    }, {
        executable: gradle
        args: removeInput incrementalReverse
        flags: --quiet
        expected-output-file: incrementalTaskRemovedInput.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: consumer
        executable: gradle
        args: "tasks -Dcreate1=true"
    }, {
        execution-subdirectory: catalog
        executable: gradle
        args: tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
Back to top