Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 239 for Binary1 (0.14 sec)

  1. build/lib/release.sh

      fi
      kube::log::status "Deleting conformance image ${conformance_tag}"
      "${DOCKER[@]}" rmi "${conformance_tag}" &>/dev/null || true
    }
    
    # This builds all the release docker images (One docker image per binary)
    # Args:
    #  $1 - binary_dir, the directory to save the tared images to.
    #  $2 - arch, architecture for which we are building docker images.
    function kube::release::create_docker_images_for_server() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    If your PR includes any changes to the Gradle Public API, it will cause the binary compatibility check to fail.
    The binary compatibility check runs as a part of the broader sanity check.
    The latter runs on every PR and is a prerequisite for merging.
    
    If you run the sanity check locally with the `./gradlew sanityCheck`, you can see the binary compatibility error in the output.
    It looks like the following:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/BUILD

        hdrs = ["benchmark.h"],
        visibility = ["//visibility:public"],
        deps = [
            # The purpose of the benchmark library is to support building an aot
            # binary with minimal dependencies, to demonstrate small binary sizes.
            #
            # KEEP THE DEPENDENCIES MINIMAL.
            "//tensorflow/core:framework_lite",
        ],
    )
    
    cc_library(
        name = "benchmark_extra_android",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

            ).distinct()
    
            val sharedBinaryRoots = StandaloneProjectFactory.getVirtualFilesForLibraryRoots(
                sharedBinaryDependencies.flatMap { binary -> binary.getBinaryRoots() },
                testServices.environmentManager.getProjectEnvironment()
            ).distinct()
    
            project.apply {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

            ":target_aware_conversion",
            "//tensorflow/compiler/mlir:tf_mlir_opt_main",
        ],
        alwayslink = 1,
    )
    
    # Binary with no hardwares linked.
    tf_cc_binary(
        name = "tac-opt",
        testonly = True,
        deps = [
            ":tac-opt_lib",
        ],
    )
    
    # Binary with all backends linked.
    tf_cc_binary(
        name = "tac-opt-all-backends",
        testonly = True,
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/cmd/dist/buildtool.go

    	// GOPATH points at our bootstrap workspace,
    	// GOBIN is empty, so that binaries are installed to GOPATH/bin,
    	// and GOOS, GOHOSTOS, GOARCH, and GOHOSTOS are empty,
    	// so that Go bootstrap toolchain builds whatever kind of binary it knows how to build.
    	// Restore GOROOT, GOPATH, and GOBIN when done.
    	// Don't bother with GOOS, GOHOSTOS, GOARCH, and GOHOSTARCH,
    	// because setup will take care of those when bootstrapBuildTools returns.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

        }
    
        def "does not provide a default tool chain"() {
            expect:
            realizeModelElement("toolChains", NativeToolChainRegistry).isEmpty()
        }
    
        def "adds default flavor to every binary"() {
            when:
            project.model {
                components {
                    exe(NativeExecutableSpec)
                    lib(NativeLibrarySpec)
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/clean/clean.go

    		return
    	}
    	// Windows does not allow deletion of a binary file while it is executing.
    	if runtime.GOOS == "windows" {
    		// Remove lingering ~ file from last attempt.
    		if _, err2 := os.Stat(f + "~"); err2 == nil {
    			os.Remove(f + "~")
    		}
    		// Try to move it out of the way. If the move fails,
    		// which is likely, we'll try again the
    		// next time we do an install of this binary.
    		if err2 := os.Rename(f, f+"~"); err2 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. cmd/erasure-metadata-utils.go

    		if len(versions) > 0 {
    			diskVersionsCount[binary.BigEndian.Uint64(versions)]++
    		}
    	}
    
    	var commonVersions uint64
    	max := 0
    	for versions, count := range diskVersionsCount {
    		if max < count {
    			max = count
    			commonVersions = versions
    		}
    	}
    
    	if max >= writeQuorum {
    		for _, versions := range diskVersions {
    			if binary.BigEndian.Uint64(versions) == commonVersions {
    				return versions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    final executable. External linking avoids the dynamic library
    requirement but introduces a requirement that the host linker be
    present to create such a binary.
    
    Most builds both compile source code and invoke the linker to create a
    binary. When cgo is involved, the compile step already requires gcc, so
    it is not problematic for the link step to require gcc too.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top