Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 160 for pub2 (0.22 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/kubeadm/app/phases/certs/doc.go

    		 - etcd/ca.crt
    		 - etcd/ca.key
    		 - etcd/server.crt
    		 - etcd/server.key
    		 - etcd/peer.crt
    		 - etcd/peer.key
    		 - etcd/healthcheck-client.crt
    		 - etcd/healthcheck-client.key
    		 - sa.pub
    		 - sa.key
    		 - front-proxy-ca.crt
    		 - front-proxy-ca.key
    		 - front-proxy-client.crt
    		 - front-proxy-client.key
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 02 09:38:56 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. src/log/slog/handler_test.go

    			}
    			sub1 := h.WithAttrs([]Attr{Bool("sub1", true)})
    			sub2 := h.WithAttrs([]Attr{Bool("sub2", true)})
    			var wg sync.WaitGroup
    			for i := 0; i < count; i++ {
    				sub1Record := NewRecord(time.Time{}, LevelInfo, "hello from sub1", 0)
    				sub1Record.AddAttrs(Int("i", i))
    				sub2Record := NewRecord(time.Time{}, LevelInfo, "hello from sub2", 0)
    				sub2Record.AddAttrs(Int("i", i))
    				wg.Add(1)
    				go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/crypto/tls/boring_test.go

    		pkey = parent.key
    	} else {
    		pcert = tmpl
    		pkey = key
    	}
    
    	var pub interface{}
    	switch k := key.(type) {
    	case *rsa.PrivateKey:
    		pub = &k.PublicKey
    	case *ecdsa.PrivateKey:
    		pub = &k.PublicKey
    	default:
    		t.Fatalf("invalid key %T", key)
    	}
    
    	der, err := x509.CreateCertificate(rand.Reader, tmpl, pcert, pub, pkey)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/mime/mediatype_test.go

    			m("title", "This is ***fun***")},
    
    		{`message/external-body; access-type=URL; ` +
    			`URL*0="ftp://";` +
    			`URL*1="cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar"`,
    			"message/external-body",
    			m("access-type", "URL",
    				"url", "ftp://cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar")},
    
    		{`application/x-stuff; ` +
    			`title*0*=us-ascii'en'This%20is%20even%20more%20; ` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  8. src/crypto/rsa/pkcs1v15_test.go

    	p, _ := pem.Decode([]byte(s))
    	k, err := x509.ParsePKCS1PublicKey(p.Bytes)
    	if err != nil {
    		panic(err)
    	}
    	return k
    }
    
    func TestShortPKCS1v15Signature(t *testing.T) {
    	pub := parsePublicKey(`-----BEGIN RSA PUBLIC KEY-----
    MEgCQQCd9BVzo775lkohasxjnefF1nCMcNoibqIWEVDe/K7M2GSoO4zlSQB+gkix
    O3AnTcdHB51iaZpWfxPSnew8yfulAgMBAAE=
    -----END RSA PUBLIC KEY-----`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_block_test.go

    	}
    
    	err = csiUnmapper.TearDownDevice(globalMapPath, "/dev/test")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// ensure csi client call and node unpblished
    	pubs := csiUnmapper.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodePublishedVolumes()
    	if _, ok := pubs[csiUnmapper.volumeID]; ok {
    		t.Error("csi server may not have received NodeUnpublishVolume call")
    	}
    
    	// ensure csi client call and node unstaged
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. src/archive/tar/format.go

    	// Most notably, it cannot support sparse files, files larger than 8GiB,
    	// filenames larger than 256 characters, and non-ASCII filenames.
    	//
    	// Reference:
    	//	http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	FormatUSTAR
    
    	// FormatPAX represents the PAX header format defined in POSIX.1-2001.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top