Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for content_es (0.11 sec)

  1. src/cmd/go/internal/modfetch/cache.go

    		old := make([]byte, buf.Len()+1)
    		if n, err := f.ReadAt(old, 0); err == io.EOF && n == buf.Len() && bytes.Equal(buf.Bytes(), old) {
    			return nil // No edit needed.
    		}
    	}
    	// Remove existing contents, so that when we truncate to the actual size it will zero-fill,
    	// and we will be able to detect (some) incomplete writes as files containing trailing NUL bytes.
    	if err := f.Truncate(0); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. src/os/file.go

    	if e == nil && f.dirinfo.Load() != nil && r != 0 {
    		e = syscall.EISDIR
    	}
    	if e != nil {
    		return 0, f.wrapErr("seek", e)
    	}
    	return r, nil
    }
    
    // WriteString is like Write, but writes the contents of string s rather than
    // a slice of bytes.
    func (f *File) WriteString(s string) (n int, err error) {
    	b := unsafe.Slice(unsafe.StringData(s), len(s))
    	return f.Write(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/crypto/rsa/pkcs1v15.go

    //	  digest OCTET STRING
    //	}
    //
    // For performance, we don't use the generic ASN1 encoder. Rather, we
    // precompute a prefix of the digest value that makes a valid ASN1 DER string
    // with the correct contents.
    var hashPrefixes = map[crypto.Hash][]byte{
    	crypto.MD5:       {0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/go/doc/example.go

    			return cmp.Compare(a.Suffix, b.Suffix)
    		})
    	}
    }
    
    // nameWithoutInst returns name if name has no brackets. If name contains
    // brackets, then it returns name with all the contents between (and including)
    // the outermost left and right bracket removed.
    //
    // Adapted from debug/gosym/symtab.go:Sym.nameWithoutInst.
    func nameWithoutInst(name string) string {
    	start := strings.Index(name, "[")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	}
    	return l.symsByName[ver][name]
    }
    
    // Check that duplicate symbols have same contents.
    func (l *Loader) checkdup(name string, r *oReader, li uint32, dup Sym) {
    	p := r.Data(li)
    	rdup, ldup := l.toLocal(dup)
    	pdup := rdup.Data(ldup)
    	reason := "same length but different contents"
    	if len(p) != len(pdup) {
    		reason = fmt.Sprintf("new length %d != old length %d", len(p), len(pdup))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	}
    	r.setIndirect(indirect)
    	f.Require = append(f.Require, r)
    }
    
    // SetRequire updates the requirements of f to contain exactly req, preserving
    // the existing block structure and line comment contents (except for 'indirect'
    // markings) for the first requirement on each named module path.
    //
    // The Syntax field is ignored for the requirements in req.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys.go

    	}
    	sort.Slice(sortedFiles, func(i, j int) bool { return sortedFiles[i].Name() < sortedFiles[j].Name() })
    	return sortedFiles, nil
    }
    
    // OverlayPath returns the path to the overlaid contents of the
    // file, the empty string if the overlay deletes the file, or path
    // itself if the file is not in the overlay, the file is a directory
    // in the overlay, or there is no overlay.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/net/http/response_test.go

    	{true, false},
    	{true, true},
    }
    
    type readerAndCloser struct {
    	io.Reader
    	io.Closer
    }
    
    // TestReadResponseCloseInMiddle tests that closing a body after
    // reading only part of its contents advances the read to the end of
    // the request, right up until the next request.
    func TestReadResponseCloseInMiddle(t *testing.T) {
    	t.Parallel()
    	for _, test := range readResponseCloseInMiddleTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/archive/tar/common.go

    	// "SCHILY.xattr." namespace.
    	//
    	// The following are semantically equivalent:
    	//  h.Xattrs[key] = value
    	//  h.PAXRecords["SCHILY.xattr."+key] = value
    	//
    	// When Writer.WriteHeader is called, the contents of Xattrs will take
    	// precedence over those in PAXRecords.
    	//
    	// Deprecated: Use PAXRecords instead.
    	Xattrs map[string]string
    
    	// PAXRecords is a map of PAX extended header records.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/io/io.go

    	UnreadRune() error
    }
    
    // StringWriter is the interface that wraps the WriteString method.
    type StringWriter interface {
    	WriteString(s string) (n int, err error)
    }
    
    // WriteString writes the contents of the string s to w, which accepts a slice of bytes.
    // If w implements [StringWriter], [StringWriter.WriteString] is invoked directly.
    // Otherwise, [Writer.Write] is called exactly once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top