Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,104 for Binary (0.1 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

            }
    
            then:
            binary.libs// == [dependency]
        }
    
        def "binary libs include source set dependencies"() {
            def binary = testBinary(component)
            def lib = new Object()
            def dependency = Stub(NativeDependencySet)
    
            when:
            def sourceSet = Stub(DependentSourceSet) {
                getLibs() >> [lib]
            }
            binary.inputs.add sourceSet
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/assembler/plugins/internal/AssembleTaskConfig.java

        }
    
        @Override
        public void configureTask(Task task, BinarySpec binary, LanguageSourceSet sourceSet, ServiceRegistry serviceRegistry) {
            configureAssembleTask((Assemble) task, (NativeBinarySpecInternal) binary, (LanguageSourceSetInternal) sourceSet);
        }
    
        private void configureAssembleTask(Assemble task, final NativeBinarySpecInternal binary, final LanguageSourceSetInternal sourceSet) {
    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/documentation/docs/src/snippets/native-binaries/cpp-exe/groovy/build.gradle

                }
            }
        }
        tasks { t ->
            $.components.main.binaries.each { binary ->
                def stripTask = binary.tasks.taskName("strip")
                t.create(stripTask) {
                    dependsOn binary.tasks.link
                    doFirst {
                        if (binary.toolChain in Gcc) {
                            ["strip", binary.tasks.link.linkedFile].execute().waitForOrKill(1000)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 931 bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

        }
    
        def "assemble task builds outputs of development binary of main component"() {
            def binary1 = binary('debug', 'debugInstall')
            def binary2 = binary('release', 'releaseInstall')
            def binaries = new DefaultBinaryCollection(SoftwareComponent)
            binaries.add(binary1)
            binaries.add(binary2)
            def component = Stub(TestComponent)
            component.binaries >> binaries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/NativeTestSuiteBinaryRenderer.java

            builder.item("install using task", binary.getTasks().getInstall().getPath());
            builder.item("run using task", binary.getTasks().getRun().getPath());
        }
    
        @Override
        protected void renderOutputs(NativeTestSuiteBinarySpec binary, TextReportBuilder builder) {
            builder.item("executable file", binary.getExecutableFile());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppBinary.java

        /**
         * Returns the C++ source files of this binary.
         */
        FileCollection getCppSource();
    
        /**
         * Returns the header directories to use to compile this binary. Includes the header directories of this binary plus those of its dependencies.
         */
        FileCollection getCompileIncludePath();
    
        /**
         * Returns the link libraries to use to link this binary. Includes the link libraries of the component's dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/debug/macho/fat.go

    	*File
    }
    
    // ErrNotFat is returned from [NewFatFile] or [OpenFat] when the file is not a
    // universal binary but may be a thin binary, based on its magic number.
    var ErrNotFat = &FormatError{0, "not a fat Mach-O file", nil}
    
    // NewFatFile creates a new [FatFile] for accessing all the Mach-O images in a
    // universal binary. The Mach-O binary is expected to start at position 0 in
    // the ReaderAt.
    func NewFatFile(r io.ReaderAt) (*FatFile, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppLibraryTest.groovy

            expect:
            def binary = library.addSharedLibrary(identity, targetPlatform, toolChain, platformToolProvider)
            binary.name == 'mainDebug'
            binary.debuggable
            !binary.optimized
            binary.targetPlatform == targetPlatform
            binary.toolChain == toolChain
            binary.platformToolProvider == platformToolProvider
    
            library.binaries.realizeNow()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/internal/sys/arch.go

    	Name:           "386",
    	Family:         I386,
    	ByteOrder:      binary.LittleEndian,
    	PtrSize:        4,
    	RegSize:        4,
    	MinLC:          1,
    	Alignment:      1,
    	CanMergeLoads:  true,
    	HasLR:          false,
    	FixedFrameSize: 0,
    }
    
    var ArchAMD64 = &Arch{
    	Name:           "amd64",
    	Family:         AMD64,
    	ByteOrder:      binary.LittleEndian,
    	PtrSize:        8,
    	RegSize:        8,
    	MinLC:          1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinarySpec.java

    import org.gradle.model.ModelMap;
    
    /**
     * Represents a binary that is the result of building a component.
     */
    @Incubating @HasInternalProtocol
    public interface BinarySpec extends BuildableComponentSpec, CheckableComponentSpec, Binary {
    
        /**
         * Can this binary be built in the current environment?
         */
        boolean isBuildable();
    
        /**
         * The sources owned by this binary.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top