Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,005 for aBinary (0.18 sec)

  1. src/cmd/internal/goobj/objfile.go

    func (n *RefName) Sym() SymRef {
    	return SymRef{binary.LittleEndian.Uint32(n[:]), binary.LittleEndian.Uint32(n[4:])}
    }
    func (n *RefName) Name(r *Reader) string {
    	len := binary.LittleEndian.Uint32(n[8:])
    	off := binary.LittleEndian.Uint32(n[12:])
    	return r.StringAt(off, len)
    }
    
    func (n *RefName) SetSym(x SymRef) {
    	binary.LittleEndian.PutUint32(n[:], x.PkgIdx)
    	binary.LittleEndian.PutUint32(n[4:], x.SymIdx)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/plugins/TestingModelBasePlugin.java

                for (TestSuiteSpec testSuite : testSuites.values()) {
                    for (BinarySpecInternal binary : testSuite.getBinaries().withType(BinarySpecInternal.class).values()) {
                        binaries.put(binary.getProjectScopedName(), binary);
                    }
                }
            }
    
            @Finalize
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/AbstractNativeComponentPluginTest.groovy

                        test(NativeExecutableSpec) {
                            binaries.all { NativeBinary binary ->
                                binary."${this.pluginName}Compiler".define "NDEBUG"
                                binary."${this.pluginName}Compiler".define "LEVEL", "1"
                                binary."${this.pluginName}Compiler".args "ARG1", "ARG2"
                            }
                            sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppApplicationVisualStudioTargetBinary.java

        private final CppExecutable binary;
    
        public CppApplicationVisualStudioTargetBinary(String projectName, String projectPath, CppComponent component, CppExecutable binary, ProjectLayout projectLayout) {
            super(projectName, projectPath, component, projectLayout);
            this.binary = binary;
        }
    
        @Override
        public String getVisualStudioProjectName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/debug/gosym/pclntab.go

    	case leMagic == go118magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver118
    	case beMagic == go118magic:
    		t.binary, possibleVersion = binary.BigEndian, ver118
    	case leMagic == go120magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver120
    	case beMagic == go120magic:
    		t.binary, possibleVersion = binary.BigEndian, ver120
    	default:
    		return
    	}
    	t.version = possibleVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_modes.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    go test -short -cover encoding/binary errors -coverprofile=$WORK/cover.out
    ! stderr '[^0-9]0\.0%'
    ! stdout '[^0-9]0\.0%'
    
    grep -count=1 '^mode: set$' $WORK/cover.out
    grep 'errors\.go' $WORK/cover.out
    grep 'binary\.go' $WORK/cover.out
    
    [!race] stop
    
    go test -short -race -cover encoding/binary errors -coverprofile=$WORK/cover.out
    ! stderr '[^0-9]0\.0%'
    ! stdout '[^0-9]0\.0%'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 678 bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppApplicationPlugin.java

                // Prefer the host architecture, if present, else use the first architecture specified
                return application.getBinaries().get().stream()
                        .filter(CppExecutable.class::isInstance)
                        .map(CppExecutable.class::cast)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTasksModelRuleExtractorTest.groovy

            static String returnValue(ModelMap<Task> builder, SomeBinarySpec binary) {
            }
    
            @BinaryTasks
            static void noParams() {
            }
    
            @BinaryTasks
            static void wrongSubject(BinarySpec binary, String input) {
            }
    
            @BinaryTasks
            static void rawModelMap(ModelMap tasks, SomeBinarySpec binary) {
            }
    
            @BinaryTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                    task.dependsOn(binary.getInstallDirectory());
                    // TODO: Honor changes to build directory
                    task.setOutputDir(project.getLayout().getBuildDirectory().dir("test-results/" + binary.getNames().getDirName()).get().getAsFile());
                });
                binary.getRunTask().set(testTask);
    
                configureTestSuiteWithTestedComponentWhenAvailable(project, testComponent, binary);
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/TypeAwareBinaryRendererTest.groovy

        def "delegates to renderer for type"() {
            def binary = Stub(SomeBinary)
            def output = Stub(TextReportBuilder)
            def renderer = new TypeAwareBinaryRenderer()
            def binRenderer = Mock(AbstractBinaryRenderer)
    
            given:
            binRenderer.targetType >> binary.getClass()
            renderer.register(binRenderer)
    
            when:
            renderer.render(binary, output)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 26 02:58:27 UTC 2015
    - 2.1K bytes
    - Viewed (0)
Back to top