Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Binary (0.16 sec)

  1. src/cmd/go/alldocs.go

    //
    // By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
    // If the -exec flag is given, 'go run' invokes the binary using xprog:
    //
    //	'xprog a.out arguments...'.
    //
    // If the -exec flag is not given, GOOS or GOARCH is different from the system
    // default, and a program named go_$GOOS_$GOARCH_exec can be found
    // on the current search path, 'go run' invokes the binary using that program,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	}
    	// Read resync meta header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case resyncMetaFormat:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case resyncMetaVersion:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	// Update the binary with the final build ID.
    	// But if OmitDebug is set, don't rewrite the binary, because we set OmitDebug
    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	sr.AddAddr(ctxt.Arch, s.Sym())
    }
    
    // appendString appends s to data, prefixed by its varint-encoded length.
    func appendString(data []byte, s string) []byte {
    	var v [binary.MaxVarintLen64]byte
    	n := binary.PutUvarint(v[:], uint64(len(s)))
    	data = append(data, v[:n]...)
    	data = append(data, s...)
    	return data
    }
    
    // assign addresses to text
    func (ctxt *Link) textaddress() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        verbs: ["deletecollection"]
        omitStages:
          - "RequestReceived"
    
      # Secrets, ConfigMaps, TokenRequest and TokenReviews can contain sensitive & binary data,
      # so only log at the Metadata level.
      - level: Metadata
        resources:
          - group: "" # core
            resources: ["secrets", "configmaps", "serviceaccounts/token"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      # ensure a version supported by easyrsa is installed
      if [ "$(openssl version | cut -d\  -f1)" == "LibreSSL" ]; then
        echo "LibreSSL is not supported. Please ensure openssl points to an OpenSSL binary"
        if [ "$(uname -s)" == "Darwin" ]; then
          # We want this print just the way it is
          # shellcheck disable=SC2016
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		},
    		// Basic config map with one data and one binary data entry.
    		{
    			configMap: api.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "configmap3",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Data: map[string]string{
    					"foo": "bar",
    				},
    				BinaryData: map[string][]byte{
    					"bin": []byte("binary data"),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top