Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 715 for Binary1 (0.15 sec)

  1. src/cmd/internal/obj/pcln.go

    		if dbg {
    			ctxt.Logf("%6x %6d %v\n", uint64(p.Pc), val, p)
    		}
    
    		if started {
    			pcdelta := (p.Pc - pc) / int64(ctxt.Arch.MinLC)
    			n := binary.PutUvarint(buf, uint64(pcdelta))
    			dst = append(dst, buf[:n]...)
    			pc = p.Pc
    		}
    
    		delta := val - oldval
    		n := binary.PutVarint(buf, int64(delta))
    		dst = append(dst, buf[:n]...)
    		oldval = val
    		started = true
    		val = valfunc(ctxt, func_, val, p, 1, arg)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/value.go

    	default:
    		return 0, typ, ErrUnexpectedType
    	}
    }
    
    // GetBinaryValue retrieves the binary value for the specified
    // value name associated with an open key k. It also returns the value's type.
    // If value does not exist, GetBinaryValue returns ErrNotExist.
    // If value is not BINARY, it will return the correct value
    // type and ErrUnexpectedType.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. pkg/credentialprovider/plugin/plugin.go

    	if _, err := os.Stat(pluginBinDir); err != nil {
    		if os.IsNotExist(err) {
    			return fmt.Errorf("plugin binary directory %s did not exist", pluginBinDir)
    		}
    
    		return fmt.Errorf("error inspecting binary directory %s: %w", pluginBinDir, err)
    	}
    
    	credentialProviderConfig, err := readCredentialProviderConfigFile(pluginConfigFile)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	return map[string]ChannelProtocolConfig{
    		"":                             {Binary: true, Channels: channels},
    		ChannelWebSocketProtocol:       {Binary: true, Channels: channels},
    		Base64ChannelWebSocketProtocol: {Binary: false, Channels: channels},
    	}
    }
    
    // Conn supports sending multiple binary channels over a websocket connection.
    type Conn struct {
    	protocols        map[string]ChannelProtocolConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadmacho/ldmacho.go

    	hdr, _, err := f.Slice(7 * 4)
    	if err != nil {
    		return errorf("reading hdr: %v", err)
    	}
    
    	var e binary.ByteOrder
    	if binary.BigEndian.Uint32(hdr[:])&^1 == 0xFEEDFACE {
    		e = binary.BigEndian
    	} else if binary.LittleEndian.Uint32(hdr[:])&^1 == 0xFEEDFACE {
    		e = binary.LittleEndian
    	} else {
    		return errorf("bad magic - not mach-o file")
    	}
    
    	is64 := e.Uint32(hdr[:]) == 0xFEEDFACF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  6. hack/lib/golang.sh

      local -a nonstatics=()
      local -a tests=()
    
      for binary in "${binaries[@]}"; do
        if [[ "${binary}" =~ ".test"$ ]]; then
          tests+=("${binary}")
          kube::log::info "    ${binary} (test)"
        elif kube::golang::is_statically_linked "${binary}"; then
          statics+=("${binary}")
          kube::log::info "    ${binary} (static)"
        else
          nonstatics+=("${binary}")
          kube::log::info "    ${binary} (non-static)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    				break
    			} else if err != nil {
    				return nil, err
    			}
    		}
    	}
    	return notes, nil
    }
    
    // GetBuildID returns the GNU build-ID for an ELF binary.
    //
    // If no build-ID was found but the binary was read without error, it returns
    // (nil, nil).
    func GetBuildID(f *elf.File) ([]byte, error) {
    	findBuildID := func(notes []elfNote) ([]byte, error) {
    		var buildID []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. hack/lib/util.sh

      if [[ -z "${bin}" ]]; then
        kube::log::error "Failed to find binary ${lookfor} for platform ${platform}"
        return 1
      fi
    
      echo -n "${bin}"
    }
    
    # looks for $1 in well-known output locations for the host platform
    # $KUBE_ROOT must be set
    kube::util::find-binary() {
      kube::util::find-binary-for-platform "$1" "$(kube::util::host_platform)"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/wasm/asm.go

    	data := ldr.Data(s)
    
    	readUint32 := func() (v uint32) {
    		v = binary.LittleEndian.Uint32(data)
    		data = data[4:]
    		return
    	}
    
    	readUint64 := func() (v uint64) {
    		v = binary.LittleEndian.Uint64(data)
    		data = data[8:]
    		return
    	}
    
    	readByte := func() byte {
    		if len(data) == 0 {
    			reportError(io.EOF)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    The Swift plugins also integrates the above tasks into the standard <<base_plugin#sec:base_tasks,lifecycle tasks>>.
    The task that produces the development binary is attached to `assemble`.
    By default, the development binary is the debug variant.
    
    The rest of the chapter explains the different ways to customize the build to your requirements when building libraries and applications.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top