Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for mnist (0.13 sec)

  1. pkg/kube/inject/webhook_test.go

    	manifests, _, err := manifest.GenManifests(inFilenames, setFlags, false, nil, nil, l)
    	if err != nil {
    		t.Fatalf("failed to generate manifests: %v", err)
    	}
    	for _, mlist := range manifests[name.PilotComponentName] {
    		for _, object := range strings.Split(mlist, yamlSeparator) {
    			if len(object) == 0 {
    				continue
    			}
    			r := bytes.NewReader([]byte(object))
    			decoder := k8syaml.NewYAMLOrJSONDecoder(r, 1024)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  2. src/crypto/sha256/sha256block_ppc64x.s

    #include "textflag.h"
    
    // SHA256 block routine. See sha256block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    // Wt = SIGMA1(Wt-2) + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 63
    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/cmd/internal/notsha256/sha256block_ppc64x.s

    #include "textflag.h"
    
    // SHA256 block routine. See sha256block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    // Wt = SIGMA1(Wt-2) + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 63
    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/internal/notsha256/sha256block_amd64.s

    //go:build !purego
    
    #include "textflag.h"
    
    // SHA256 block routine. See sha256block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    
    // Wt = Mt; for 0 <= t <= 15
    // Wt = SIGMA1(Wt-2) + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 63
    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512block_ppc64x.s

    //go:build (ppc64 || ppc64le) && !purego
    
    #include "textflag.h"
    
    // SHA512 block routine. See sha512block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    // Wt = SIGMA1(Wt-2) + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 79
    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256.go

    import (
    	"crypto/internal/nistec/fiat"
    	"crypto/subtle"
    	"errors"
    	"sync"
    )
    
    // p256ElementLength is the length of an element of the base or scalar field,
    // which have the same bytes length for all NIST P curves.
    const p256ElementLength = 32
    
    // P256Point is a P256 point. The zero value is NOT valid.
    type P256Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p224.go

    package nistec
    
    import (
    	"crypto/internal/nistec/fiat"
    	"crypto/subtle"
    	"errors"
    	"sync"
    )
    
    // p224ElementLength is the length of an element of the base or scalar field,
    // which have the same bytes length for all NIST P curves.
    const p224ElementLength = 28
    
    // P224Point is a P224 point. The zero value is NOT valid.
    type P224Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p521.go

    package nistec
    
    import (
    	"crypto/internal/nistec/fiat"
    	"crypto/subtle"
    	"errors"
    	"sync"
    )
    
    // p521ElementLength is the length of an element of the base or scalar field,
    // which have the same bytes length for all NIST P curves.
    const p521ElementLength = 66
    
    // P521Point is a P521 point. The zero value is NOT valid.
    type P521Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p384.go

    package nistec
    
    import (
    	"crypto/internal/nistec/fiat"
    	"crypto/subtle"
    	"errors"
    	"sync"
    )
    
    // p384ElementLength is the length of an element of the base or scalar field,
    // which have the same bytes length for all NIST P curves.
    const p384ElementLength = 48
    
    // P384Point is a P384 point. The zero value is NOT valid.
    type P384Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/generate.go

    import (
    	"crypto/internal/nistec/fiat"
    	"crypto/subtle"
    	"errors"
    	"sync"
    )
    
    // {{.p}}ElementLength is the length of an element of the base or scalar field,
    // which have the same bytes length for all NIST P curves.
    const {{.p}}ElementLength = {{ .ElementLen }}
    
    // {{.P}}Point is a {{.P}} point. The zero value is NOT valid.
    type {{.P}}Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top