Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 695 for Binary1 (0.2 sec)

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

    	"ppc64":   disasm_ppc64,
    	"ppc64le": disasm_ppc64,
    }
    
    var byteOrders = map[string]binary.ByteOrder{
    	"386":     binary.LittleEndian,
    	"amd64":   binary.LittleEndian,
    	"arm":     binary.LittleEndian,
    	"arm64":   binary.LittleEndian,
    	"ppc64":   binary.BigEndian,
    	"ppc64le": binary.LittleEndian,
    	"s390x":   binary.BigEndian,
    }
    
    type Liner interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

        }
        tasks { t ->
            $.components.main.binaries.each { binary ->
                def preLinkTask = binary.tasks.taskName("preLink")
                t.create(preLinkTask) {
                    dependsOn binary.tasks.withType(CppCompile)
                    doLast {
                        println "Pre Link"
                    }
                }
                binary.tasks.link.dependsOn preLinkTask
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    // for the final link of the gofmt binary and comparing it against the
    // already-installed gofmt binary. But computing the action ID for the link
    // means knowing the content ID of main.a, which we did not keep.
    // To sidestep this problem, each binary actually stores an expanded build ID:
    //
    //	actionID(binary)/actionID(main.a)/contentID(main.a)/contentID(binary)
    //
    // (Note that this can be viewed equivalently as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

            reportOutput.hasNodeStructure {
                components {
                    sampleLib {
                        binaries {
                            binary(type: 'SampleBinary', creator: 'MyComponentBinariesPlugin.Rules#createBinariesForSampleLibrary(ModelMap<SampleBinary>, SampleLibrary) > create(binary)') {
                                tasks()
                                sources()
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. pkg/wasm/imagefetcher.go

    	}
    
    	return &ImageFetcher{
    		fetchOpts: append(fetchOpts, remote.WithContext(ctx)),
    	}
    }
    
    // PrepareFetch is the entrypoint for fetching Wasm binary from Wasm Image Specification compatible images.
    // Wasm binary is not fetched immediately, but returned by `binaryFetcher` function, which is returned by PrepareFetch.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                .withArguments(":binary-compatibility:checkBinaryCompatibility", "-s")
    
            val (buildResult, failure) = try {
                runner.build()!! to null
            } catch (ex: UnexpectedBuildFailure) {
                ex.buildResult!! to ex
            }
    
            println(buildResult.output)
    
            val richReportFile = inputBuildDir.resolve("binary-compatibility/build/japi/japi.html").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	var parsedVer *utilversion.Version
    	var isNft bool
    	// does the "xx-save" binary exist?
    	rulesDump, binExistsErr := exec.Command(iptablesSaveBin).CombinedOutput()
    	if binExistsErr != nil {
    		return IptablesVersion{}, fmt.Errorf("binary %s not found in path: %w", iptablesSaveBin, binExistsErr)
    	}
    
    	// Binary is there, so try to parse version
    	verCmd := exec.Command(iptablesSaveBin, "--version")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

                return createLibraryEntry(binary, null, null, classpath, null, pathToSourceSets, testDependency, asJavaModule, false);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. src/internal/pkgbits/decoder.go

    	r := strings.NewReader(input)
    
    	assert(binary.Read(r, binary.LittleEndian, &pr.version) == nil)
    
    	switch pr.version {
    	default:
    		panic(fmt.Errorf("unsupported version: %v", pr.version))
    	case 0:
    		// no flags
    	case 1:
    		var flags uint32
    		assert(binary.Read(r, binary.LittleEndian, &flags) == nil)
    		pr.sync = flags&flagSyncMarkers != 0
    	}
    
    	assert(binary.Read(r, binary.LittleEndian, pr.elemEndsEnds[:]) == nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		names = append(names, osxNames...)
    	}
    	for _, name := range names {
    		if binary, found := findExe(name, paths); found {
    			return binary, true
    		}
    	}
    	return "", false
    }
    
    // isLLVMObjdump accepts a string with path to an objdump binary,
    // and returns a boolean indicating if the given binary is an LLVM
    // objdump binary of an acceptable version.
    func isLLVMObjdump(output string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top