Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,359 for executable_ (0.21 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/FileTypes.java

    import com.google.common.collect.ImmutableMultimap;
    
    /**
     * File types used in Apple targets.
     */
    public enum FileTypes {
        /**
         * Apple UTI for executables.
         */
        MACH_O_EXECUTABLE("", "compiled.mach-o.executable"),
    
        /**
         * Apple UTI for dynamic libraries.
         */
        MACH_O_DYNAMIC_LIBRARY("dylib", "compiled.mach-o.dylib"),
    
        /**
         * Apple UTI for static libraries.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageParallelIntegrationTest.groovy

        HelloWorldApp app = new CppHelloWorldApp()
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
        def "can produce multiple executables that use a library from a single project in parallel"() {
            given:
            def apps = [
                first : new ExeWithLibraryUsingLibraryHelloWorldApp(),
                second: new ExeWithLibraryUsingLibraryHelloWorldApp(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                    task.getExecutableFile().set(executable.getExecutableFile());
                    task.lib(executable.getRuntimeLibraries());
                });
    
                executable.getInstallTask().set(install);
                executable.getInstallDirectory().set(install.flatMap(task -> task.getInstallDirectory()));
                executable.getOutputs().from(executable.getInstallDirectory());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  4. src/cmd/link/doc.go

    		Set build mode (default exe).
    	-c
    		Dump call graphs.
    	-compressdwarf
    		Compress DWARF if possible (default true).
    	-cpuprofile file
    		Write CPU profile to file.
    	-d
    		Disable generation of dynamic executables.
    		The emitted code is the same in either case; the option
    		controls only whether a dynamic header is included.
    		The dynamic header is on by default, even without any
    		references to dynamic libraries, because many common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util_test.cc

      const XlaCompiler::CompilationResult* result;
      xla::PjRtLoadedExecutable* executable;
      CompileToExecutable(args, &result, &executable);
    
      std::vector<const Tensor*> inputs;
      inputs.push_back(a);
      inputs.push_back(b);
      TF_ASSERT_OK_AND_ASSIGN(auto execute_outputs,
                              RunExecutable(inputs, {}, result, executable));
    
      TF_EXPECT_OK(PopulateCtxOutputsFromPjRtExecutableOutputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. LICENSE

      However, linking a "work that uses the Library" with the Library
    creates an executable that is a derivative of the Library (because it
    contains portions of the Library), rather than a "work that uses the
    library".  The executable is therefore covered by this License.
    Section 6 states terms for distribution of such executables.
    
      When a "work that uses the Library" uses material from a header file
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/work/build.go

    executable to an output file named after the last non-major-version
    component of the package import path. The '.exe' suffix is added
    when writing a Windows executable.
    So 'go build example/sam' writes 'sam' or 'sam.exe'.
    'go build example.com/foo/v2' writes 'foo' or 'foo.exe', not 'v2.exe'.
    
    When compiling a package from a list of .go files, the executable
    is named after the first source file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/stmtlines_test.go

    	}
    
    	return nil, fmt.Errorf("unrecognized executable format")
    }
    
    func must(err error) {
    	if err != nil {
    		panic(err)
    	}
    }
    
    type Line struct {
    	File string
    	Line int
    }
    
    func TestStmtLines(t *testing.T) {
    	if !platform.ExecutableHasDWARF(runtime.GOOS, runtime.GOARCH) {
    		t.Skipf("skipping on %s/%s: no DWARF symbol table in executables", runtime.GOOS, runtime.GOARCH)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:building_an_executable]]
    == Building an executable
    
    To build a native executable, you define an executable component in the `components` container. The following sample defines an executable called `main`:
    
    === Example: Defining executable components
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/c/groovy/build.gradle[tag=executables]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top