Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,003 for Binary1 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. test/fixedbugs/issue11656.dir/issue11656.go

    	case "arm":
    		binary.LittleEndian.PutUint32(ill[0:4], 0xe3a00000) // MOVW $0, R0
    		binary.LittleEndian.PutUint32(ill[4:8], 0xe5800000) // MOVW R0, (R0)
    	case "arm64":
    		binary.LittleEndian.PutUint32(ill, 0xf90003ff) // MOVD ZR, (ZR)
    	case "ppc64":
    		binary.BigEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    	case "ppc64le":
    		binary.LittleEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/encoding/binary/example_test.go

    	}
    	for _, v := range data {
    		err := binary.Write(buf, binary.LittleEndian, v)
    		if err != nil {
    			fmt.Println("binary.Write failed:", err)
    		}
    	}
    	fmt.Printf("%x", buf.Bytes())
    	// Output: beefcafe
    }
    
    func ExampleRead() {
    	var pi float64
    	b := []byte{0x18, 0x2d, 0x44, 0x54, 0xfb, 0x21, 0x09, 0x40}
    	buf := bytes.NewReader(b)
    	err := binary.Read(buf, binary.LittleEndian, &pi)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. src/internal/xcoff/file.go

    	case U802TOCMAGIC:
    		fhdr := new(FileHeader32)
    		if err := binary.Read(sr, binary.BigEndian, fhdr); err != nil {
    			return nil, err
    		}
    		nscns = fhdr.Fnscns
    		symptr = uint64(fhdr.Fsymptr)
    		nsyms = fhdr.Fnsyms
    		opthdr = fhdr.Fopthdr
    		hdrsz = FILHSZ_32
    	case U64_TOCMAGIC:
    		fhdr := new(FileHeader64)
    		if err := binary.Read(sr, binary.BigEndian, fhdr); err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/CppModelBuilder.java

                    binaries.add(new DefaultCppExecutableModel(binary.getName(), cppBinary.getIdentity().getName(), binary.getBaseName().get(), compilationDetails, linkageDetails));
                } else if (binary instanceof CppSharedLibrary) {
                    CppSharedLibrary sharedLibrary = (CppSharedLibrary) binary;
                    LinkSharedLibrary linkTask = sharedLibrary.getLinkTask().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

        }
    
        def "binary has name and sensible display name"() {
            def binary = create(SampleBinary, MySampleBinary, "sampleBinary")
    
            expect:
            binary instanceof SampleBinary
            binary.name == "sampleBinary"
            binary.projectScopedName == "sampleBinary"
            binary.displayName == "SampleBinary 'sampleBinary'"
            binary.namingScheme.description == "sample binary 'sampleBinary'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top