Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for content_es (0.54 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/internal/mlkem768/mlkem768.go

    			return T{}, errors.New("mlkem768: invalid polynomial encoding")
    		}
    		b = b[3:]
    	}
    	return f, nil
    }
    
    // sliceForAppend takes a slice and a requested number of bytes. It returns a
    // slice with the contents of the given slice followed by that many bytes and a
    // second slice that aliases into it and contains only the extra bytes. If the
    // original slice has sufficient capacity then no allocation is performed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    		if !bytes.Equal(hs.serverHello.secureRenegotiation, expectedSecureRenegotiation[:]) {
    			c.sendAlert(alertHandshakeFailure)
    			return false, errors.New("tls: incorrect renegotiation extension contents")
    		}
    	}
    
    	if err := checkALPN(hs.hello.alpnProtocols, hs.serverHello.alpnProtocol, false); err != nil {
    		c.sendAlert(alertUnsupportedExtension)
    		return false, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/builtins0.go

    	var t []interface{}
    	t = append(t, 42, 3.1415, "foo")   //                             t == []interface{}{42, 3.1415, "foo"}
    
    	var b []byte
    	b = append(b, "bar"...)            // append string contents      b == []byte{'b', 'a', 'r' }
    
    	_ = s4
    }
    
    func append3() {
    	f1 := func() (s []int) { return }
    	f2 := func() (s []int, x int) { return }
    	f3 := func() (s []int, x, y int) { return }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    	// may have a nil ReaderAt.
    	io.ReaderAt
    	sr *io.SectionReader
    
    	compressionType   CompressionType
    	compressionOffset int64
    }
    
    // Data reads and returns the contents of the ELF section.
    // Even if the section is stored compressed in the ELF file,
    // Data returns uncompressed data.
    //
    // For an [SHT_NOBITS] section, Data always returns a non-nil error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top