Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for pub2 (0.12 sec)

  1. docker/iptables.yaml

    contents:
      repositories:
        - https://packages.wolfi.dev/os
      keyring:
        - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub
      packages:
        - ca-certificates-bundle
        - wolfi-baselayout
        - glibc
        - iptables
        - ip6tables
        - libnetfilter_conntrack
        - libnfnetlink
        - libmnl
        - libgcc
    archs:
      - x86_64
      - aarch64
    paths:
    - path: /run
      type: directory
      permissions: 0o755
    accounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 541 bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa_noasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !s390x || purego
    
    package ecdsa
    
    import "io"
    
    func verifyAsm(pub *PublicKey, hash []byte, sig []byte) error {
    	return errNoAsm
    }
    
    func signAsm(priv *PrivateKey, csprng io.Reader, hash []byte) (sig []byte, err error) {
    	return nil, errNoAsm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 413 bytes
    - Viewed (0)
  3. src/crypto/internal/hpke/hpke_test.go

    				t.Fatal(err)
    			}
    			if _, ok := SupportedAEADs[uint16(aeadID)]; !ok {
    				t.Skip("unsupported AEAD")
    			}
    
    			info := mustDecodeHex(t, setup["info"])
    			pubKeyBytes := mustDecodeHex(t, setup["pkRm"])
    			pub, err := ParseHPKEPublicKey(uint16(kemID), pubKeyBytes)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			ephemeralPrivKey := mustDecodeHex(t, setup["skEm"])
    
    			testingOnlyGenerateKey = func() (*ecdh.PrivateKey, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

            path = Path.path(':sub')
    
            then:
            path.relativePath(':') == ':'
            path.relativePath(':sub') == ':sub'
            path.relativePath(':sub:path') == 'path'
            path.relativePath(':sub2:path') == ':sub2:path'
            path.relativePath(':other:path') == ':other:path'
        }
    
        def 'converts relative path to relative path'() {
            def path = path(':')
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
     * def publication = publishing.publications.create("my-pub", IvyPublication)
     * def configurations = publication.configurations
     *
     * configurations.create("extended", { extend "default"})
     * configurations.all {
     *     extend "base"
     * }
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/testing/helper_test.go

        helperfuncs_test.go:56: 4
        --- FAIL: TestTBHelper/sub \([^)]+\)
            helperfuncs_test.go:59: 5
            helperfuncs_test.go:24: 6
            helperfuncs_test.go:58: 7
        --- FAIL: TestTBHelper/sub2 \([^)]+\)
            helperfuncs_test.go:80: 11
        helperfuncs_test.go:84: recover 12
        helperfuncs_test.go:86: GenericFloat64
        helperfuncs_test.go:87: GenericInt
        helper_test.go:22: 8
        helperfuncs_test.go:73: 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/testing/helperfuncs_test.go

    		wg.Add(1)
    		go func() {
    			notHelperCallingHelper(t, "parallel")
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    }
    
    func helperSubCallingHelper(t *testing.T, msg string) {
    	t.Helper()
    	t.Run("sub2", func(t *testing.T) {
    		t.Helper()
    		t.Fatal(msg)
    	})
    }
    
    func recoverHelper(t *testing.T, msg string) {
    	t.Helper()
    	defer func() {
    		t.Helper()
    		if err := recover(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/time/zoneinfo_unix.go

    //go:build unix && !ios && !android
    
    // Parse "zoneinfo" time zone file.
    // This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others.
    // See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo,
    // and ftp://munnari.oz.au/pub/oldtz/
    
    package time
    
    import (
    	"syscall"
    )
    
    // Many systems use /usr/share/zoneinfo, Solaris 2 has
    // /usr/share/lib/zoneinfo, IRIX 6 has /usr/lib/locale/TZ,
    // NixOS has /etc/zoneinfo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 04 02:26:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top