Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for pub2 (0.03 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifactSet.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
     * def publication = publishing.publications.create("my-pub", IvyPublication)
     * def artifacts = publication.artifacts
     *
     * artifacts.matching({
     *     it.type == "source"
     * }).all({
     *     it.extension = "src.jar"
     * })
     * </pre>
     *
     * @see DomainObjectSet
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. cmd/sftp-server_test.go

    				suite.TearDownSuite(c)
    			},
    		)
    	}
    }
    
    func (s *TestSuiteIAM) SFTPFailedPublicKeyAuthenticationInvalidKey(c *check) {
    	keyBytes, err := os.ReadFile("./testdata/invalid_test_key.pub")
    	if err != nil {
    		c.Fatalf("could not read test key file: %s", err)
    	}
    
    	testKey, _, _, _, err := ssh.ParseAuthorizedKey(keyBytes)
    	if err != nil {
    		c.Fatalf("could not parse test key file: %s", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/crypto/internal/hpke/hpke.go

    	0x0001: func() *hkdfKDF { return &hkdfKDF{crypto.SHA256} },
    }
    
    func SetupSender(kemID, kdfID, aeadID uint16, pub crypto.PublicKey, info []byte) ([]byte, *Sender, error) {
    	suiteID := SuiteID(kemID, kdfID, aeadID)
    
    	kem, err := newDHKem(kemID)
    	if err != nil {
    		return nil, nil, err
    	}
    	pubRecipient, ok := pub.(*ecdh.PublicKey)
    	if !ok {
    		return nil, nil, errors.New("incorrect public key type")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	hwcap2_SVE2 = 1 << 1
    )
    
    // linuxKernelCanEmulateCPUID reports whether we're running
    // on Linux 4.11+. Ideally we'd like to ask the question about
    // whether the current kernel contains
    // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=77c97b4ee21290f5f083173d957843b615abbff2
    // but the version number will have to do.
    func linuxKernelCanEmulateCPUID() bool {
    	var un syscall.Utsname
    	syscall.Uname(&un)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/crypto/rsa/pss_test.go

    	"crypto/sha1"
    	"crypto/sha256"
    	"encoding/hex"
    	"math/big"
    	"os"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    func TestEMSAPSS(t *testing.T) {
    	// Test vector in file pss-int.txt from: ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1-vec.zip
    	msg := []byte{
    		0x85, 0x9e, 0xef, 0x2f, 0xd7, 0x8a, 0xca, 0x00, 0x30, 0x8b,
    		0xdc, 0x47, 0x11, 0x93, 0xbf, 0x55, 0xbf, 0x9d, 0x78, 0xdb,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. README.md

    [one way or another][communication].
    
    [announcement]: https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container
    [Borg]: https://research.google.com/pubs/pub43438.html
    [CNCF]: https://www.cncf.io/about
    [communication]: https://git.k8s.io/community/communication
    [community repository]: https://git.k8s.io/community
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/test/mockopenidserver.go

    			{ "alg": "RS256", "kty": "RSA", "n": "789", "e": "123" } ] }`
    
    	JwtPubKeyNoKeys = `{ "pub": [ { "kid": "fakeKey1_1", "alg": "RS256", "kty": "RSA", "n": "abc", "e": "def" },
    			{ "kid": "fakeKey1_2", "alg": "RS256", "kty": "RSA", "n": "123", "e": "456" } ] }`
    
    	JwtPubKeyNoKeys2 = `{ "pub": [ { "kid": "fakeKey1_3", "alg": "RS256", "kty": "RSA", "n": "abc", "e": "def" },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/os/stat_windows.go

    func lstatNolog(name string) (FileInfo, error) {
    	followSurrogates := false
    	if name != "" && IsPathSeparator(name[len(name)-1]) {
    		// We try to implement POSIX semantics for Lstat path resolution
    		// (per https://pubs.opengroup.org/onlinepubs/9699919799.2013edition/basedefs/V1_chap04.html#tag_04_12):
    		// symlinks before the last separator in the path must be resolved. Since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/crypto/x509/pkcs8.go

    	"crypto/ecdh"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/rsa"
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"errors"
    	"fmt"
    )
    
    // pkcs8 reflects an ASN.1, PKCS #8 PrivateKey. See
    // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-8/pkcs-8v1_2.asn
    // and RFC 5208.
    type pkcs8 struct {
    	Version    int
    	Algo       pkix.AlgorithmIdentifier
    	PrivateKey []byte
    	// optional attributes omitted.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/os/fifo_test.go

    )
    
    func TestFifoEOF(t *testing.T) {
    	t.Parallel()
    
    	dir := t.TempDir()
    	fifoName := filepath.Join(dir, "fifo")
    	if err := syscall.Mkfifo(fifoName, 0600); err != nil {
    		t.Fatal(err)
    	}
    
    	// Per https://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html#tag_16_357_03:
    	//
    	// - “If O_NONBLOCK is clear, an open() for reading-only shall block the
    	//   calling thread until a thread opens the file for writing. An open() for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top