Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 733 for Binary (0.32 sec)

  1. src/debug/elf/file.go

    	case ELFCLASS64:
    		// ok
    	default:
    		return nil, &FormatError{0, "unknown ELF class", f.Class}
    	}
    
    	f.Data = Data(ident[EI_DATA])
    	var bo binary.ByteOrder
    	switch f.Data {
    	case ELFDATA2LSB:
    		bo = binary.LittleEndian
    	case ELFDATA2MSB:
    		bo = binary.BigEndian
    	default:
    		return nil, &FormatError{0, "unknown ELF data encoding", f.Data}
    	}
    	f.ByteOrder = bo
    
    	f.Version = Version(ident[EI_VERSION])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

        private String toBuildConfigurationName(SoftwareComponent component, SoftwareComponent binary) {
            String result = binary.getName().replace(component.getName(), "");
            if (binary instanceof SwiftSharedLibrary || binary instanceof CppSharedLibrary) {
                return result.replace("Shared", "");
            } else if (binary instanceof SwiftStaticLibrary || binary instanceof  CppStaticLibrary) {
                return result.replace("Static", "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                component.getBinaries().whenElementKnown(binary -> components.add(binary));
    
                if (component instanceof ProductionComponent) {
                    // Add an assemble task for each binary and also wire the development binary in to the `assemble` task
                    component.getBinaries().whenElementFinalized(ComponentWithOutputs.class, binary -> {
    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/vendor/github.com/google/pprof/internal/driver/cli.go

    	return cmd, nil
    }
    
    var usageMsgHdr = `usage:
    
    Produce output in the specified format.
    
       pprof <format> [options] [binary] <source> ...
    
    Omit the format to get an interactive shell whose commands can be used
    to generate various views of a profile
    
       pprof [options] [binary] <source> ...
    
    Omit the format and provide the "-http" flag to get an interactive web
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            // Of course, we have to use binary search to find the precise
            // breakpoint...
            int lower = 0;
            int upper = foundIndex;
            // Of course, we have to use binary search to find the precise breakpoint...
            // Everything between lower and upper inclusive compares at <= 0.
            while (lower < upper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/go/build/deps_test.go

    	< internal/trace/event/go122;
    
    	FMT, io, internal/trace/event/go122
    	< internal/trace/version;
    
    	FMT, encoding/binary, internal/trace/version
    	< internal/trace/raw;
    
    	FMT, internal/trace/event, internal/trace/version, io, sort, encoding/binary
    	< internal/trace/internal/oldtrace;
    
    	FMT, encoding/binary, internal/trace/version, internal/trace/internal/oldtrace, container/heap, math/rand
    	< internal/trace;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/amd64/versions_test.go

    		if tag == "amd64.v2" {
    			t.Skip("compiling for GOAMD64=v2 or higher")
    		}
    	}
    	if os.Getenv("TESTGOAMD64V1") != "" {
    		t.Skip("recursive call")
    	}
    
    	// Make a binary which will be a modified version of the
    	// currently running binary.
    	dst, err := os.CreateTemp("", "TestGoAMD64v1")
    	if err != nil {
    		t.Fatalf("failed to create temp file: %v", err)
    	}
    	defer os.Remove(dst.Name())
    	dst.Chmod(0500) // make executable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

        DefaultTestExecutionResult(TestFile projectDir, String buildDirName = 'build', String binary='', String testedBinary = '', String testTaskName = 'test') {
            String binaryPath = binary?"/$binary":''
            binaryPath = testedBinary?"$binaryPath/$testedBinary":"$binaryPath";
            if(binary){
                htmlResult = new HtmlTestExecutionResult(projectDir, "$buildDirName/reports${binaryPath}/tests/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            }
        }
    
        def linkToBinary(String command, TestFile binDir) {
            binDir.mkdirs()
            def binary = new File("/usr/bin/$command")
            if (!binary.exists()) {
                binary = new File("/bin/$command")
            }
            assert binary.exists()
            binDir.file(command).createLink(binary)
        }
    
        def "can define gradle user home via environment variable"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	Uuid [16]byte
    }
    
    type loadCmdReader struct {
    	offset, next int64
    	f            *os.File
    	order        binary.ByteOrder
    }
    
    func (r *loadCmdReader) Next() (loadCmd, error) {
    	var cmd loadCmd
    
    	r.offset = r.next
    	if _, err := r.f.Seek(r.offset, 0); err != nil {
    		return cmd, err
    	}
    	if err := binary.Read(r.f, r.order, &cmd); err != nil {
    		return cmd, err
    	}
    	r.next = r.offset + int64(cmd.Len)
    	return cmd, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top