Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 160 for pub2 (0.04 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

         -
    
    BUILD SUCCESSFUL"""
        }
    
        def "listsCommonDynamicAvailableValues"() {
            createDirs("sub1", "sub2")
            when:
            run "help", "--task", "hello"
            then:
            output.contains """Detailed task information for hello
    
    Paths
         :sub1:hello
         :sub2:hello
    
    Type
         CustomTask (CustomTask)
    
    Options
         --stringValue     Configures a string value in CustomTask.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

                ring.encode(it)
            }
            def publicKeys = generator.generatePublicKeyRing().publicKeys.collect { it }
            PGPPublicKeyRing pub = new PGPPublicKeyRing(publicKeys)
            PGPPublicKeyRingCollection pubcol = new BcPGPPublicKeyRingCollection(
                [pub]
            )
            new FileOutputStream(pubring).withCloseable {
                pubcol.encode(it)
            }
            directory
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/crypto/ed25519/ed25519.go

    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(PublicKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(pub, xx) == 1
    }
    
    // PrivateKey is the type of Ed25519 private keys. It implements [crypto.Signer].
    type PrivateKey []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.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. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    			expected: []string{
    				"kube-apiserver",
    				"--enable-admission-plugins=NodeRestriction",
    				"--service-cluster-ip-range=bar",
    				"--service-account-key-file=" + filepath.Join(testCertsDir, "sa.pub"),
    				"--service-account-signing-key-file=" + filepath.Join(testCertsDir, "sa.key"),
    				"--service-account-issuer=https://kubernetes.default.svc.cluster.local",
    				"--client-ca-file=" + filepath.Join(testCertsDir, "ca.crt"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    					default:
    						goto bad
    
    					case REG_DS:
    						ab.Put1(0xc5)
    
    					case REG_SS:
    						ab.Put2(0x0f, 0xb2)
    
    					case REG_ES:
    						ab.Put1(0xc4)
    
    					case REG_FS:
    						ab.Put2(0x0f, 0xb4)
    
    					case REG_GS:
    						ab.Put2(0x0f, 0xb5)
    					}
    
    					ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    				case movDoubleShift:
    					if t[0] == Pw {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/work/shell_test.go

    			// argument. Our bash test script would interpret that as a syntax error.
    			t.Skipf("skipping %#q: contains a bare newline", b)
    		}
    
    		// We use the printf shell command to echo the arguments because, per
    		// https://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html#tag_20_37_16:
    		// “It is not possible to use echo portably across all POSIX systems unless
    		// both -n (as the first argument) and escape sequences are omitted.”
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. 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)
Back to top