Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 683 for Kata (1.93 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		if tile != full {
    			data, err := c.ops.ReadCache(c.tileCacheKey(full))
    			if err == nil {
    				c.markTileSaved(tile) // don't save tile later; we already have full
    				return cached{data[:len(data)/full.W*tile.W], nil}
    			}
    		}
    
    		// Try requested tile from server.
    		data, err = c.ops.ReadRemote(c.tileRemotePath(tile))
    		if err == nil {
    			return cached{data, nil}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/testdata/globallib/global.go

    // license that can be found in the LICENSE file.
    
    package globallib
    
    // Data is large enough to that offsets into it do not fit into
    // 16-bit or 20-bit immediates. Ideally we'd also try and overrun
    // 32-bit immediates, but that requires the test machine to have
    // too much memory.
    var Data [1<<20 + 10]int64
    
    func init() {
    	for i := range Data {
    		Data[i] = int64(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 485 bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.go

    }
    
    // paddedGHASH pads data with zeroes until its length is a multiple of
    // 16-bytes. It then calculates a new value for hash using the ghash
    // algorithm.
    func (g *gcmAsm) paddedGHASH(hash *[16]byte, data []byte) {
    	if siz := len(data) - (len(data) % gcmBlockSize); siz > 0 {
    		gcmHash(hash[:], &g.productTable, data[:], siz)
    		data = data[siz:]
    	}
    	if len(data) > 0 {
    		var s [16]byte
    		copy(s[:], data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/internal/codesign/codesign.go

    	Dataoff  uint32 // file offset of data in __LINKEDIT segment
    	Datasize uint32 // file size of data in __LINKEDIT segment
    }
    
    func FindCodeSigCmd(f *macho.File) (CodeSigCmd, bool) {
    	get32 := f.ByteOrder.Uint32
    	for _, l := range f.Loads {
    		data := l.Raw()
    		cmd := get32(data)
    		if cmd == LC_CODE_SIGNATURE {
    			return CodeSigCmd{
    				cmd,
    				get32(data[4:]),
    				get32(data[8:]),
    				get32(data[12:]),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/cover.go

    		collection.MetaFileFragments = append(collection.MetaFileFragments, metaFilesFile)
    	}
    
    	// Serialize it.
    	data, err := json.Marshal(collection)
    	if err != nil {
    		return fmt.Errorf("marshal MetaFileCollection: %v", err)
    	}
    	data = append(data, '\n') // makes -x output more readable
    
    	// Create the directory for this action's objdir and
    	// then write out the serialized collection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/internal/cov/covcmd/cmddefs.go

    // when the instrumented package is built.
    type CoverFixupConfig struct {
    	// Name of the variable (created by cmd/cover) containing the
    	// encoded meta-data for the package.
    	MetaVar string
    
    	// Length of the meta-data.
    	MetaLen int
    
    	// Hash computed by cmd/cover of the meta-data.
    	MetaHash string
    
    	// Instrumentation strategy. For now this is always set to
    	// "normal", but in the future we may add new values (for example,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/addmod.go

    				a.Files = append(a.Files, txtar.File{Name: str.TrimFilePathPrefix(path, dir), Data: data})
    			}
    			return nil
    		})
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    			exitCode = 1
    			continue
    		}
    
    		data := txtar.Format(a)
    		target := filepath.Join("mod", strings.ReplaceAll(path, "/", "_")+"_"+vers+".txt")
    		if err := os.WriteFile(target, data, 0666); err != nil {
    			log.Printf("%s: %v", arg, err)
    			exitCode = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/crypto/elliptic/nistec.go

    	byteLen := (curve.params.BitSize + 7) / 8
    	x = new(big.Int).SetBytes(data[1 : 1+byteLen])
    	y = new(big.Int).SetBytes(data[1+byteLen:])
    	return x, y
    }
    
    func (curve *nistCurve[Point]) UnmarshalCompressed(data []byte) (x, y *big.Int) {
    	if len(data) == 0 || (data[0] != 2 && data[0] != 3) {
    		return nil, nil
    	}
    	p, err := curve.newPoint().SetBytes(data)
    	if err != nil {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 16:19:34 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/shell.go

    				continue
    			}
    			data, err := io.ReadAll(rc)
    			rc.Close()
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "?%s\n", err)
    				continue
    			}
    
    			if f[3] != "-" {
    				if err := os.WriteFile(f[3], data, 0666); err != nil {
    					fmt.Fprintf(os.Stderr, "?%s\n", err)
    					continue
    				}
    			}
    			z, err := zip.NewReader(bytes.NewReader(data), int64(len(data)))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. src/crypto/sha512/sha512.go

    // Sum512 returns the SHA512 checksum of the data.
    func Sum512(data []byte) [Size]byte {
    	if boring.Enabled {
    		return boring.SHA512(data)
    	}
    	d := digest{function: crypto.SHA512}
    	d.Reset()
    	d.Write(data)
    	return d.checkSum()
    }
    
    // Sum384 returns the SHA384 checksum of the data.
    func Sum384(data []byte) [Size384]byte {
    	if boring.Enabled {
    		return boring.SHA384(data)
    	}
    	d := digest{function: crypto.SHA384}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top