Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for 8032 (0.59 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. src/strconv/doc.go

    // but if the size argument specifies a narrower width the result can be
    // converted to that narrower type without data loss:
    //
    //	s := "2147483647" // biggest int32
    //	i64, err := strconv.ParseInt(s, 10, 32)
    //	...
    //	i := int32(i64)
    //
    // [FormatBool], [FormatFloat], [FormatInt], and [FormatUint] convert values to strings:
    //
    //	s := strconv.FormatBool(true)
    //	s := strconv.FormatFloat(3.1415, 'E', -1, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            Amount.valueOf(value, units).format() == str
    
            where:
            value    | units         | str
            0        | Fruit.apples  | "0 apples"
            1        | Fruit.apples  | "1 apple"
            0.032    | Fruit.apples  | "0.032 apples"
            2.367722 | Fruit.apples  | "2.368 apples"
            3        | Fruit.apples  | "1 orange"
            5        | Fruit.apples  | "1 grapefruit"
            4        | Fruit.apples  | "1.333 oranges"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

    @IntegrationTestTimeout(600)
    class BuildSourceBuilderIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2032")
        def "can simultaneously run gradle on projects with buildSrc"() {
            initScript """
                import ${BuildOperationListenerManager.name}
                import ${BuildOperationListener.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top