Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for 8032 (1.06 sec)

  1. src/crypto/ed25519/ed25519.go

    // https://ed25519.cr.yp.to/.
    //
    // These functions are also compatible with the “Ed25519” function defined in
    // RFC 8032. However, unlike RFC 8032's formulation, this package's private key
    // representation includes a public key suffix to make multiple signing
    // operations with the same key more efficient. This package refers to the RFC
    // 8032 private key as the “seed”.
    //
    // Operations involving private keys are implemented using constant-time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/scalar.go

    		case s[i] > scalarMinusOneBytes[i]:
    			return false
    		case s[i] < scalarMinusOneBytes[i]:
    			return true
    		}
    	}
    	return true
    }
    
    // SetBytesWithClamping applies the buffer pruning described in RFC 8032,
    // Section 5.1.5 (also known as clamping) and sets s to the result. The input
    // must be 32 bytes, and it is not modified. If x is not of the right length,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe.go

    //
    // Consistent with RFC 7748, the most significant bit (the high bit of the
    // last byte) is ignored, and non-canonical values (2^255-19 through 2^255-1)
    // are accepted. Note that this is laxer than specified by RFC 8032, but
    // consistent with most Ed25519 implementations.
    func (v *Element) SetBytes(x []byte) (*Element, error) {
    	if len(x) != 32 {
    		return nil, errors.New("edwards25519: invalid field element input size")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    	}
    
    	port803x = []*Port{
    		{
    			Port:     8031,
    			Protocol: "TCP",
    			Name:     "tcp-1",
    		},
    		{
    			Port:     8032,
    			Protocol: "TCP",
    			Name:     "tcp-2",
    		},
    		{
    			Port:     8033,
    			Protocol: "TCP",
    			Name:     "tcp-3",
    		},
    		{
    			Port:     8034,
    			Protocol: "TCP",
    			Name:     "tcp-4",
    		},
    		{
    			Port:     8035,
    			Protocol: "TCP",
    			Name:     "tcp-5",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. docs/ftp/README.md

    ## Usage
    
    Start MinIO in a distributed setup, with 'ftp/sftp' enabled.
    
    ```
    minio server http://server{1...4}/disk{1...4}
       --ftp="address=:8021" --ftp="passive-port-range=30000-40000" \
       --sftp="address=:8022" --sftp="ssh-private-key=/home/miniouser/.ssh/id_rsa"
    ...
    ...
    ```
    
    Following example shows connecting via ftp client using `minioadmin` credentials, and list a bucket named `runner`:
    
    ```
    ftp localhost -P 8021
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/proxy/util/nodeport_addresses_test.go

    						&net.IPNet{IP: netutils.ParseIPSloppy("1.2.3.4"), Mask: net.CIDRMask(30, 32)},
    						&net.IPNet{IP: netutils.ParseIPSloppy("2001:db8::1"), Mask: net.CIDRMask(64, 128)},
    					},
    				},
    				{
    					itf: net.Interface{Index: 1, MTU: 0, Name: "lo", HardwareAddr: nil, Flags: 0},
    					addrs: []net.Addr{
    						&net.IPNet{IP: netutils.ParseIPSloppy("127.0.0.1"), Mask: net.CIDRMask(8, 32)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            and:
            wrapperExecuter.run()
    
            then:
            noExceptionThrown()
        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/3032')
        def "fails with reasonable message when download times out"() {
            given:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getDefaultBaseUrl())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/validate.go

    	}
    	return nil
    }
    
    // validateUInt32 validates that the given annotation value is a positive integer.
    func validateUInt32(value string) error {
    	_, err := strconv.ParseUint(value, 10, 32)
    	return err
    }
    
    // validateBool validates that the given annotation value is a boolean.
    func validateBool(value string) error {
    	_, err := strconv.ParseBool(value)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_MADVISE                 = 5027
    	SYS_SHMGET                  = 5028
    	SYS_SHMAT                   = 5029
    	SYS_SHMCTL                  = 5030
    	SYS_DUP                     = 5031
    	SYS_DUP2                    = 5032
    	SYS_PAUSE                   = 5033
    	SYS_NANOSLEEP               = 5034
    	SYS_GETITIMER               = 5035
    	SYS_SETITIMER               = 5036
    	SYS_ALARM                   = 5037
    	SYS_GETPID                  = 5038
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_MADVISE                 = 5027
    	SYS_SHMGET                  = 5028
    	SYS_SHMAT                   = 5029
    	SYS_SHMCTL                  = 5030
    	SYS_DUP                     = 5031
    	SYS_DUP2                    = 5032
    	SYS_PAUSE                   = 5033
    	SYS_NANOSLEEP               = 5034
    	SYS_GETITIMER               = 5035
    	SYS_SETITIMER               = 5036
    	SYS_ALARM                   = 5037
    	SYS_GETPID                  = 5038
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top