Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for 140 (0.34 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 66K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

      policy:
        overprovisioningFactor: 140
    - clusterName: prometheus_stats
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 127.0.0.1
                portValue: 15000
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 17.1K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

                            "loadBalancingWeight": 1
                        }
                    ]
                }
            ],
            "policy": {
                "overprovisioningFactor": 140
            }
        },
        {
            "clusterName": "outbound|9402||cert-manager-istio-csr-metrics.cert-manager.svc.cluster.local",
            "endpoints": [
                {
                    "locality": {},
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 40.4K bytes
    - Viewed (0)
  4. internal/fips/api.go

    // implementations compliant with FIPS 140.
    //
    // FIPS 140 [1] is a US standard for data processing that specifies
    // requirements for cryptographic modules. Software that is "FIPS 140
    // compliant" must use approved cryptographic primitives only and that
    // are implemented by a FIPS 140 certified cryptographic module.
    //
    // So, FIPS 140 requires that a certified implementation of e.g. AES
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Dec 30 19:37:07 GMT 2022
    - 5.1K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.json

                            "loadBalancingWeight": 1
                        }
                    ],
                    "loadBalancingWeight": 1
                }
            ],
            "policy": {
                "overprovisioningFactor": 140
            }
        },
        {
            "clusterName": "outbound|80||skywalking-ui.skywalking.svc.cluster.local",
            "endpoints": [
                {
                    "locality": {},
                    "lbEndpoints": [
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.yaml

            filterMetadata:
              istio:
                workload: istio-ingressgateway;istio-system;istio-ingressgateway;latest;Kubernetes
        loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: outbound|80||skywalking-ui.skywalking.svc.cluster.local
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.189
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 1K bytes
    - Viewed (0)
  7. README.fips.md

    # MinIO FIPS Builds
    
    MinIO creates FIPS builds using a patched version of the Go compiler (that uses BoringCrypto, from BoringSSL, which is [FIPS 140-2 validated](https://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp2964.pdf)) published by the Golang Team [here](https://github.com/golang/go/tree/dev.boringcrypto/misc/boring).
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Jul 17 15:43:14 GMT 2022
    - 869 bytes
    - Viewed (0)
  8. internal/hash/sha256/sh256_nofips.go

    // +build !fips
    
    package sha256
    
    import (
    	"hash"
    
    	nofipssha256 "github.com/minio/sha256-simd"
    )
    
    // New returns a new hash.Hash computing the SHA256 checksum.
    // The SHA256 implementation is not FIPS 140-2 compliant.
    func New() hash.Hash { return nofipssha256.New() }
    
    // Sum256 returns the SHA256 checksum of the data.
    func Sum256(data []byte) [nofipssha256.Size]byte { return nofipssha256.Sum256(data) }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Aug 29 23:57:16 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  9. internal/hash/sha256/sh256_fips.go

    //go:build fips
    // +build fips
    
    package sha256
    
    import (
    	fipssha256 "crypto/sha256"
    	"hash"
    )
    
    // New returns a new hash.Hash computing the SHA256 checksum.
    // The SHA256 implementation is FIPS 140-2 compliant when the
    // boringcrypto branch of Go is used.
    // Ref: https://github.com/golang/go/tree/dev.boringcrypto
    func New() hash.Hash { return fipssha256.New() }
    
    // Sum256 returns the SHA256 checksum of the data.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Aug 29 23:57:16 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  10. .idea/codeStyles/Project.xml

    <component name="ProjectCodeStyleConfiguration">
      <code_scheme name="Project" version="173">
        <option name="LINE_SEPARATOR" value="&#10;" />
        <option name="RIGHT_MARGIN" value="140" />
        <JavaCodeStyleSettings>
          <option name="PREFER_LONGER_NAMES" value="false" />
          <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND">
            <value>
              <package name="java.awt" withSubpackages="false" static="false" />
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue May 02 13:36:56 GMT 2023
    - 4.1K bytes
    - Viewed (3)
Back to top