Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 131 for Executable (0.16 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. 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)
  3. 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)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                }
            }
    
            then:
            NativeExecutableSpec executable = single(components.values()) as NativeExecutableSpec
            NativeExecutableBinarySpec executableBinary = single(binaries) as NativeExecutableBinarySpec
            with(executableBinary) {
                name == 'executable'
                component == executable
                toolChain.name == "tc"
                targetPlatform.name == "platform"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            mainSolution.assertReferencesProject(twoProject, projectConfigurations)
        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for executable that depends on a library in another project"() {
            when:
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/main"))
    
            createDirs("exe", "lib")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compiler.h

    //
    // Caches the compiled XlaCompilationResult and Executable using a
    // DeviceCompilationCache. Compilation is done only when there's a cache miss.
    //
    // Uses the DeviceExecutablePersistor class for persistence and tries to load a
    // serialized executable from disk upon a request for compilation. If the
    // appropriate executable isn't found on disk, compiles the given Tensorflow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compiler_test.cc

      xla::LocalExecutable* xla_executable = nullptr;
    
      // Persist an executable.
      TF_EXPECT_OK(xla_device_compiler->CompileIfNeeded(
          options, fn, args, XlaCompiler::CompileOptions{},
          DeviceCompileMode::kStrict, profiler_, &compilation_result,
          &xla_executable));
    
      // Corrupt the file which contains the serialized executable.
      std::vector<string> files;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            }
        }
    }
    '''
    
            when:
            run 'installDist'
    
            def builder = new ScriptExecuter()
            builder.workingDir file('build/install/application/bin')
            builder.executable "application"
            if (OperatingSystem.current().windows) {
                builder.environment('APPLICATION_OPTS', '-DtestValue=value -DtestValue2="some value" -DtestValue3="some value"')
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util.h

    DeviceType GetDeviceType(OpKernelContext* ctx);
    
    // Runs `executable` and populates the outputs in `ctx`. `inputs` and
    // `variables` are the input arguments to the computation, usually read from the
    // OpKernelContext, `ctx`. Requires the device-appropriate `pjrt_client` and the
    // `compilation_result` used to build the `executable`.
    Status RunPjRtExecutable(
        const std::vector<const Tensor*>& inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		return 0, nil
    	}
    
    	switch fh.Type {
    	case elf.ET_EXEC:
    		if loadSegment == nil {
    			// Assume fixed-address executable and so no adjustment.
    			return 0, nil
    		}
    		if stextOffset == nil && start > 0 && start < 0x8000000000000000 {
    			// A regular user-mode executable. Compute the base offset using same
    			// arithmetics as in ET_DYN case below, see the explanation there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top