Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 296 for Executable (0.19 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            executable("build/exe/main/debug/app").assertExists()
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(app.sourceFileNamesWithoutHeaders)
            installation("build/install/main/debug").exec().out == app.withFeatureDisabled().expectedOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "can use executable file as task dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/wrapper-main/build.gradle.kts

    }
    
    val executableJar by tasks.registering(Jar::class) {
        archiveFileName = "gradle-wrapper-executable.jar"
        manifest {
            attributes.remove(Attributes.Name.IMPLEMENTATION_VERSION.toString())
            attributes(Attributes.Name.IMPLEMENTATION_TITLE.toString() to "Gradle Wrapper")
        }
        from(layout.projectDirectory.dir("src/executable/resources"))
        from(sourceSets.main.get().output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                apply plugin: 'java'
    
                task execTask(type: Exec) {
                    dependsOn sourceSets.main.runtimeClasspath
                    def testFile = file("${'$'}buildDir/${'$'}name")
                    executable = Jvm.current().getJavaExecutable()
                    args '-cp', sourceSets.main.runtimeClasspath.asPath, 'org.gradle.TestMain', projectDir, testFile
                    doLast {
                        assert testFile.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppApplicationInitIntegrationTest.groovy

            then:
            executed(":app:test")
    
            and:
            executable("${subprojectName()}/build/exe/main/debug/app").exec().out ==  "Hola, Mundo!\n"
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        ExecutableFixture executable(String path) {
            AvailableToolChains.defaultToolChain.executable(targetDir.file(path))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/runtime/debug/example_monitor_test.go

    		}
    		if err := f.Close(); err != nil {
    			log.Fatal(err)
    		}
    		log.Fatalf("saved crash report at %s", f.Name())
    	}
    
    	// This is the application process.
    	// Fork+exec the same executable in monitor mode.
    	exe, err := os.Executable()
    	if err != nil {
    		log.Fatal(err)
    	}
    	cmd := exec.Command(exe, "-test.run=ExampleSetCrashOutput_monitor")
    	cmd.Env = append(os.Environ(), monitorVar+"=1")
    	cmd.Stderr = os.Stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftApplicationInitIntegrationTest.groovy

            then:
            executed(":app:test")
    
            and:
            executable("${subprojectName()}/build/exe/main/debug/App").exec().out ==  "Hola, Mundo!\n"
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        ExecutableFixture executable(String path) {
            AvailableToolChains.getToolChain(ToolChainRequirement.SWIFTC).executable(targetDir.file(path))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            """
        }
    
        def "emits deprecation warning if executable specified as relative path"() {
            given:
            def executable = TextUtil.normaliseFileSeparators(Jvm.current().javaExecutable.toString())
    
            buildFile << """
                tasks.withType(JavaExec) {
                    executable = new File(".").getCanonicalFile().toPath().relativize(new File("${executable}").toPath()).toString()
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                    };
                }
            };
        }
    
        public static Key<?>[] toDependencies(@Nullable Type container, Executable executable) {
            Key<?>[] keys = toArgDependencies(container, executable);
            if (executable instanceof Constructor || Modifier.isStatic(executable.getModifiers())) {
                return keys;
            } else {
                Key<?>[] nkeys = new Key[keys.length + 1];
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top