Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 239 for Binary1 (0.21 sec)

  1. cni/pkg/install/install.go

    	// Watch our specific binaries, in each configured binary dir.
    	// We may or may not be the only CNI plugin in play, and if we are not
    	// we shouldn't fire events for binaries that are not ours.
    	var binPaths []string
    	for _, bindir := range in.cfg.CNIBinTargetDirs {
    		for _, binary := range installedBinFiles.UnsortedList() {
    			binPaths = append(binPaths, filepath.Join(bindir, binary))
    		}
    	}
    	targets := append(
    		binPaths,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. cmd/tier.go

    func (config *TierConfigMgr) Bytes() ([]byte, error) {
    	config.RLock()
    	defer config.RUnlock()
    	data := make([]byte, 4, config.Msgsize()+4)
    
    	// Initialize the header.
    	binary.LittleEndian.PutUint16(data[0:2], tierConfigFormat)
    	binary.LittleEndian.PutUint16(data[2:4], tierConfigVersion)
    
    	// Marshal the tier config
    	return config.MarshalMsg(data)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. cmd/update.go

    	if IsDocker() {
    		// Construct release tag name.
    		return fmt.Sprintf("podman pull quay.io/minio/minio:%s", releaseTag)
    	}
    
    	// For binary only installations, we return link to the latest binary.
    	if runtime.GOOS == "windows" {
    		return MinioReleaseURL + "minio.exe"
    	}
    
    	return MinioReleaseURL + "minio"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-rebalance.go

    	}
    
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case rebalMetaFmt:
    	default:
    		return fmt.Errorf("rebalanceMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case rebalMetaVer:
    	default:
    		return fmt.Errorf("rebalanceMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    
    	// OK, parse data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  5. pkg/wasm/cache.go

    	if ce != nil {
    		return ce, nil
    	}
    	key.checksum = checksum
    	// Fetch the image now as it is not available in cache.
    	var b []byte         // Byte array of Wasm binary.
    	var dChecksum string // Hex-Encoded sha256 checksum of binary.
    	var binaryFetcher func() ([]byte, error)
    	insecure := c.allowInsecure(u.Host)
    
    	ctx, cancel := context.WithTimeout(context.Background(), opts.RequestTimeout)
    	defer cancel()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/main.go

    	"flag"
    	"internal/buildcfg"
    	"log"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"strconv"
    	"strings"
    )
    
    var (
    	pkglistfornote []byte
    	windowsgui     bool // writes a "GUI binary" instead of a "console binary"
    	ownTmpDir      bool // set to true if tmp dir created by linker (e.g. no -tmpdir)
    )
    
    func init() {
    	flag.Var(&rpath, "r", "set the ELF dynamic linker search `path` to dir1:dir2:...")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. README.md

    - For deployments that installed the MinIO server binary by hand, use [`mc admin update`](https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-update.html)
    
    ```sh
    mc admin update <minio alias, e.g., myminio>
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/iimport.go

    package gcimporter
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"go/constant"
    	"go/token"
    	"go/types"
    	"internal/saferio"
    	"io"
    	"math"
    	"math/big"
    	"slices"
    	"strings"
    )
    
    type intReader struct {
    	*bufio.Reader
    	path string
    }
    
    func (r *intReader) int64() int64 {
    	i, err := binary.ReadVarint(r.Reader)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_test.go

    	if err != nil {
    		t.Fatalf("cannot open binary %q, %v", os.Args[0], err)
    	}
    	defer src.Close()
    
    	dst, err := os.OpenFile(tmpBinary, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0755)
    	if err != nil {
    		t.Fatalf("cannot create temporary binary %q, %v", tmpBinary, err)
    	}
    	if _, err := io.Copy(dst, src); err != nil {
    		t.Fatalf("failed to copy test binary to %q, %v", tmpBinary, err)
    	}
    	err = dst.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/objfile.go

    		case goobj.PkgIdxBuiltin:
    			h.Write([]byte{3})
    			binary.LittleEndian.PutUint32(tmp[:4], uint32(rs.SymIdx))
    			h.Write(tmp[:4])
    		case goobj.PkgIdxSelf:
    			io.WriteString(h, w.pkgpath)
    			binary.LittleEndian.PutUint32(tmp[:4], uint32(rs.SymIdx))
    			h.Write(tmp[:4])
    		default:
    			io.WriteString(h, rs.Pkg)
    			binary.LittleEndian.PutUint32(tmp[:4], uint32(rs.SymIdx))
    			h.Write(tmp[:4])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top