Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,003 for Binary1 (0.14 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                        linkTask.getTargetPlatform().set(binary.getTargetPlatform());
                        linkTask.getLinkedFile().set(binary.getSharedLibraryFile());
                        linkTask.getInstallName().set(binary.getSharedLibraryFile().getName());
                        linkTask.getLinkerArgs().set(binary.getLinker().getArgs());
                        linkTask.getImportLibrary().set(binary.getSharedLibraryLinkFile());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppSharedLibraryVisualStudioTargetBinary.java

        private final CppSharedLibrary binary;
    
        public CppSharedLibraryVisualStudioTargetBinary(String projectName, String projectPath, CppComponent component, CppSharedLibrary binary, ProjectLayout projectLayout) {
            super(projectName, projectPath, component, projectLayout);
            this.binary = binary;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftBasePlugin.java

                final Names names = binary.getNames();
                TaskProvider<SwiftCompile> compile = tasks.register(names.getCompileTaskName("swift"), SwiftCompile.class, task -> {
                    task.getModules().from(binary.getCompileModules());
                    task.getSource().from(binary.getSwiftSource());
                    task.getDebuggable().set(binary.isDebuggable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectConfiguration.java

        private final VisualStudioTargetBinary binary;
    
        public VisualStudioProjectConfiguration(DefaultVisualStudioProject vsProject, String configurationName, VisualStudioTargetBinary binary) {
            this.vsProject = vsProject;
            this.configurationName = configurationName;
            this.name = configurationName + "|" + platformName;
            this.binary = binary;
        }
    
        @Input
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         * @param <S> type of the binary to return
         * @return a binary from the collection in a finalized state
         */
        <S> BinaryProvider<S> get(Class<S> type, Spec<? super S> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/funcinfo.go

    	const numfileOff = 16
    	result.NumFile = binary.LittleEndian.Uint32(b[numfileOff:])
    	result.FileOff = numfileOff + 4
    
    	numinltreeOff := result.FileOff + 4*result.NumFile
    	result.NumInlTree = binary.LittleEndian.Uint32(b[numinltreeOff:])
    	result.InlTreeOff = numinltreeOff + 4
    
    	result.Initialized = true
    
    	return result
    }
    
    func (*FuncInfo) ReadArgs(b []byte) uint32 { return binary.LittleEndian.Uint32(b) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/cover/pkgname_test.go

    	var tests = []struct {
    		fileName, pkgName string
    	}{
    		{"", ""},
    		{"///", ""},
    		{"fmt", ""}, // No Go file, improper form.
    		{"fmt/foo.go", "fmt"},
    		{"encoding/binary/foo.go", "binary"},
    		{"encoding/binary/////foo.go", "binary"},
    	}
    	var tf templateFile
    	for _, test := range tests {
    		tf.Name = test.fileName
    		td := templateData{
    			Files: []*templateFile{&tf},
    		}
    		got := td.PackageName()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 30 03:58:01 UTC 2020
    - 733 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultNativeBinaryTest.groovy

            given:
            def binary = new TestBinary("binary", project.objects, implementation)
    
            expect:
            binary.implementationDependencies == project.configurations.binaryImplementation
            binary.implementationDependencies.extendsFrom == [implementation] as Set
        }
    
        def "can add implementation dependency"() {
            given:
            def binary = new TestBinary("binary", project.objects, implementation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            null       | "binary"   | "compile" | "java" | "compileBinaryJava"
            "test"     | "binary"   | null      | null   | "testBinary"
            "test"     | "binary"   | "compile" | null   | "compileTestBinary"
            "test"     | "binary"   | "compile" | "java" | "compileTestBinaryJava"
        }
    
        def "generates binary name from type and dimension attributes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/runtime/pprof/elf.go

    // license that can be found in the LICENSE file.
    
    package pprof
    
    import (
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"os"
    )
    
    var (
    	errBadELF    = errors.New("malformed ELF binary")
    	errNoBuildID = errors.New("no NT_GNU_BUILD_ID found in ELF binary")
    )
    
    // elfBuildID returns the GNU build ID of the named ELF binary,
    // without introducing a dependency on debug/elf and its dependencies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 2.8K bytes
    - Viewed (0)
Back to top