Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 754 for Binary (0.37 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            when:
            buildFile << """
                application {
                    binaries.configureEach { binary ->
                        binary.installTask.get().installDirectory = project.layout.buildDirectory.dir("foo/\${binary.name}")
                    }
                }
            """
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/strconv/decimal.go

    // Multiprecision decimal numbers.
    // For floating-point formatting only; not general purpose.
    // Only operations are assign and (binary) left/right shift.
    // Can do binary floating point in multiprecision decimal precisely
    // because 2 divides 10; cannot do decimal floating point
    // in multiprecision binary precisely.
    
    package strconv
    
    type decimal struct {
    	d     [800]byte // digits, big-endian representation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top