Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for 18635 (0.09 sec)

  1. src/crypto/dsa/dsa.go

    // in a set of DSA parameters. See FIPS 186-3, section 4.2.
    type ParameterSizes int
    
    const (
    	L1024N160 ParameterSizes = iota
    	L2048N224
    	L2048N256
    	L3072N256
    )
    
    // numMRTests is the number of Miller-Rabin primality tests that we perform. We
    // pick the largest recommended number from table C.1 of FIPS 186-3.
    const numMRTests = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		return nil
    	}
    	typ := ValueOf(f).Type()
    	f2 := MakeFunc(typ, g).Interface().(func(string, string, string, string, string))
    	f2("four", "five5", "six666", "seven77", "eight888")
    }
    
    // Issue 18635 (function version).
    func TestKeepFuncLive(t *testing.T) {
    	// Test that we keep makeFuncImpl live as long as it is
    	// referenced on the stack.
    	typ := TypeOf(func(i int) {})
    	var f, g func(in []Value) []Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/go/printer/testdata/comments2.golden

    // license that can be found in the LICENSE file.
    
    // This is a package for testing comment placement by go/printer.
    package main
    
    // Test cases for idempotent comment formatting (was issue 1835).
    /*
    c1a
    */
    /*
       c1b
    */
    /* foo
    c1c
    */
    /* foo
       c1d
    */
    /*
    c1e
    foo */
    /*
       c1f
       foo */
    
    func f() {
    	/*
    	   c2a
    	*/
    	/*
    	   c2b
    	*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/go/printer/testdata/comments2.input

    // license that can be found in the LICENSE file.
    
    // This is a package for testing comment placement by go/printer.
    //
    package main
    
    // Test cases for idempotent comment formatting (was issue 1835).
    /*
    c1a
    */
    /*
       c1b
    */
    /* foo
    c1c
    */
    /* foo
       c1d
    */
    /*
    c1e
    foo */
    /*
       c1f
       foo */
    
    func f() {
    /*
    c2a
    */
    /*
       c2b
    */
    /* foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 00:06:54 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  5. releasenotes/notes/skip-mx-headers.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - https://github.com/istio/istio/issues/17635
    releaseNotes:
      - |
        **Added** a new configuration to `ProxyHeaders`, `MetadataExchangeHeaders`. The `IN_MESH` mode ensures `x-envoy-peer-metadata` and `x-envoy-peer-metadata-id`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 03:27:06 UTC 2023
    - 418 bytes
    - Viewed (0)
  6. src/crypto/elliptic/elliptic.go

    	}
    }
    
    var initonce sync.Once
    
    func initAll() {
    	initP224()
    	initP256()
    	initP384()
    	initP521()
    }
    
    // P224 returns a [Curve] which implements NIST P-224 (FIPS 186-3, section D.2.2),
    // also known as secp224r1. The CurveParams.Name of this [Curve] is "P-224".
    //
    // Multiple invocations of this function will return the same value, so it can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/crypto/ecdh/nist.go

    		return nil, err
    	}
    	if _, err := p.ScalarMult(p, local.privateKey); err != nil {
    		return nil, err
    	}
    	return p.BytesX()
    }
    
    // P256 returns a [Curve] which implements NIST P-256 (FIPS 186-3, section D.2.3),
    // also known as secp256r1 or prime256v1.
    //
    // Multiple invocations of this function will return the same value, which can
    // be used for equality checks and switch statements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/testdata/err2.go

    	var x1 C.ushort
    	x1 = int(0) // ERROR HERE: C\.ushort
    
    	// issue 13423
    	_ = C.fopen() // ERROR HERE
    
    	// issue 13467
    	var x2 rune = '✈'
    	var _ rune = C.transform(x2) // ERROR HERE: C\.int
    
    	// issue 13635: used to output error about C.unsignedchar.
    	// This test tests all such types.
    	var (
    		_ C.uchar         = "uc"  // ERROR HERE: C\.uchar
    		_ C.schar         = "sc"  // ERROR HERE: C\.schar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. cluster/images/etcd/migrate/options.go

    		"etcd client port to use during migration operations. "+
    			"This should be a different port than typically used by etcd to avoid clients accidentally connecting during upgrade/downgrade operations. "+
    			"If unset default to 18629 or 18631 depending on <data-dir>.")
    	flags.Uint64Var(&opts.peerPort, "peer-port", 0,
    		"etcd peer port to use during migration operations. If unset defaults to 2380 or 2381 depending on <data-dir>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/Types.java

        }
    
        boolean jdkTypeDuplicatesOwnerName() {
          return true;
        }
      }
    
      /**
       * Per <a href="https://code.google.com/p/guava-libraries/issues/detail?id=1635">issue 1635</a>,
       * In JDK 1.7.0_51-b13, {@link TypeVariableImpl#equals(Object)} is changed to no longer be equal
       * to custom TypeVariable implementations. As a result, we need to make sure our TypeVariable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top