Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for Binary1 (0.14 sec)

  1. src/go/build/build.go

    	rest := line[len(goBuildComment):]
    	return len(rest) == 0 || len(bytes.TrimSpace(rest)) < len(rest)
    }
    
    // Special comment denoting a binary-only package.
    // See https://golang.org/design/2775-binary-only-packages
    // for more about the design of binary-only packages.
    var binaryOnlyComment = []byte("//go:binary-only-package")
    
    // shouldBuild reports whether it is okay to use this file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	if t.compileOnly {
    		// We need to run a subprocess to log metadata. Don't do that
    		// on compile-only runs.
    		return nil
    	}
    	t.out("Test execution environment.")
    	// Helper binary to print system metadata (CPU model, etc). This is a
    	// separate binary from dist so it need not build with the bootstrap
    	// toolchain.
    	//
    	// TODO(prattmic): If we split dist bootstrap and dist test then this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	if ch == nil {
    		ch = make(chan struct{})
    		installed[dir] = ch
    		go runInstall(dir, ch)
    	}
    	installedMu.Unlock()
    	return ch
    }
    
    // runInstall installs the library, package, or binary associated with pkg,
    // which is relative to $GOROOT/src.
    func runInstall(pkg string, ch chan struct{}) {
    	if pkg == "net" || pkg == "os/user" || pkg == "crypto/x509" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    }
    
    // HealthHandler - returns true of health
    func (s *peerRESTServer) HealthHandler(w http.ResponseWriter, r *http.Request) {
    	s.IsValid(w, r)
    }
    
    // VerifyBinary - verifies the downloaded binary is in-tact
    func (s *peerRESTServer) VerifyBinaryHandler(w http.ResponseWriter, r *http.Request) {
    	if !s.IsValid(w, r) {
    		s.writeErrorResponse(w, errors.New("Invalid request"))
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.platform.base.binary.BaseBinarySpec.getBuildAbility()> has arguments/return type org.gradle.platform.base.internal.BinaryBuildAbility that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (BaseBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # correspond to a particular, finalized design; rather, it relates to
    # developing one.
    #
    # The current aim of the 'v2' implementation is to allow 'unused' ops and
    # kernels to be discarded by the linker (to the benefit of binary size).
    bool_flag(
        name = "enable_registration_v2",
        build_setting_default = False,
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "registration_v1",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	p.xnest = outer
    	return
    }
    
    // emphasize returns a string representation of x, with (top-level)
    // binary expressions emphasized by enclosing them in parentheses.
    func emphasize(x Expr) string {
    	s := String(x)
    	if op, _ := x.(*Operation); op != nil && op.Y != nil {
    		// binary expression
    		return "(" + s + ")"
    	}
    	return s
    }
    
    func (p *parser) ifStmt() *IfStmt {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switched kubeadm to start using the CRI client library instead of shelling out of the `crictl` binary
      for actions against a CRI endpoint. The kubeadm deb/rpm packages will continue to install the `cri-tools`
      package for one more release, but in you must adapt your scripts to install `crictl` manually from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    		// ~258MB, so this isn't too bad. (We could reserve a
    		// smaller amount of space up front if this is a
    		// problem.)
    		//
    		// 2. We hint the heap to start right above the end of
    		// the binary so we have the best chance of keeping it
    		// contiguous.
    		//
    		// 3. We try to stake out a reasonably large initial
    		// heap reservation.
    
    		const arenaMetaSize = (1 << arenaBits) * unsafe.Sizeof(heapArena{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    // Annotate Ref in Prog with C types by parsing gcc debug output.
    // Conversion of debug output to Go types.
    
    package main
    
    import (
    	"bytes"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"errors"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"internal/xcoff"
    	"math"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/internal/quoted"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top