Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for Nsec (0.06 sec)

  1. internal/crypto/metadata.go

    func IsEncrypted(metadata map[string]string) (Type, bool) {
    	if S3KMS.IsEncrypted(metadata) {
    		return S3KMS, true
    	}
    	if S3.IsEncrypted(metadata) {
    		return S3, true
    	}
    	if SSEC.IsEncrypted(metadata) {
    		return SSEC, true
    	}
    	if IsMultiPart(metadata) {
    		return nil, true
    	}
    	if _, ok := metadata[MetaIV]; ok {
    		return nil, true
    	}
    	if _, ok := metadata[MetaAlgorithm]; ok {
    		return nil, true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. cmd/metrics-v3-replication.go

    		"Average replication data transfer rate in bytes/sec")
    	replicationCurrentActiveWorkersMD = NewGaugeMD(replicationCurrentActiveWorkers,
    		"Total number of active replication workers")
    	replicationCurrentDataTransferRateMD = NewGaugeMD(replicationCurrentDataTransferRate,
    		"Current replication data transfer rate in bytes/sec")
    	replicationLastMinuteQueuedBytesMD = NewGaugeMD(replicationLastMinuteQueuedBytes,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. cmd/object-api-options.go

    	opts.UserDefined[ReservedMetadataPrefix+"Actual-Object-Size"] = r.Header.Get(xhttp.MinIOReplicationActualObjectSize)
    	// Transfer SSEC key in opts.EncryptFn
    	if crypto.SSEC.IsRequested(r.Header) {
    		key, err := ParseSSECustomerRequest(r)
    		if err == nil {
    			// Set EncryptFn to return SSEC key
    			opts.EncryptFn = func(baseKey string, data []byte) []byte {
    				return key
    			}
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/kubelet/winstats/network_stats.go

    	"k8s.io/klog/v2"
    )
    
    const (
    	packetsReceivedPerSecondQuery = "\\Network Adapter(*)\\Packets Received/sec"
    	packetsSentPerSecondQuery     = "\\Network Adapter(*)\\Packets Sent/sec"
    	bytesReceivedPerSecondQuery   = "\\Network Adapter(*)\\Bytes Received/sec"
    	bytesSentPerSecondQuery       = "\\Network Adapter(*)\\Bytes Sent/sec"
    	packetsReceivedDiscardedQuery = "\\Network Adapter(*)\\Packets Received Discarded"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/crypto/ecdsa/ecdsa_legacy.go

    	return priv, nil
    }
    
    // hashToInt converts a hash value to an integer. Per FIPS 186-4, Section 6.4,
    // we use the left-most bits of the hash to match the bit-length of the order of
    // the curve. This also performs Step 5 of SEC 1, Version 2.0, Section 4.1.3.
    func hashToInt(hash []byte, c elliptic.Curve) *big.Int {
    	orderBits := c.Params().N.BitLen()
    	orderBytes := (orderBits + 7) / 8
    	if len(hash) > orderBytes {
    		hash = hash[:orderBytes]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/extension/wasmplugin.go

    	envs := pluginConfig.GetVmConfig().GetEnvironmentVariables().GetKeyValues()
    	secretName := envs[model.WasmSecretEnv]
    	if secretName != "" {
    		if sec, found := pullSecrets[secretName]; found {
    			envs[model.WasmSecretEnv] = string(sec)
    		} else {
    			envs[model.WasmSecretEnv] = ""
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    // contributor, reviewer, auditor, and learner needs access to it. Instead, this
    // package references and follows the equivalent [SEC 1, Version 2.0].
    //
    // [FIPS 186-4]: https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf
    // [SEC 1, Version 2.0]: https://www.secg.org/sec1-v2.pdf
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/ecdh"
    	"crypto/elliptic"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/debug/buildinfo/buildinfo.go

    		}
    	}
    	return nil, errUnrecognizedFormat
    }
    
    func (x *machoExe) DataStart() (uint64, uint64) {
    	// Look for section named "__go_buildinfo".
    	for _, sec := range x.f.Sections {
    		if sec.Name == "__go_buildinfo" {
    			return sec.Addr, sec.Size
    		}
    	}
    	// Try the first non-empty writable segment.
    	const RW = 3
    	for _, load := range x.f.Loads {
    		seg, ok := load.(*macho.Segment)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin.go

    func exit_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func usleep(usec uint32) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(usleep_trampoline)), unsafe.Pointer(&usec))
    }
    func usleep_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func usleep_no_g(usec uint32) {
    	asmcgocall_no_g(unsafe.Pointer(abi.FuncPCABI0(usleep_trampoline)), unsafe.Pointer(&usec))
    }
    
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/cleanup.sh

    if [[ ${ret} -eq 0 ]];then
      cat "${OUTPUT}"
    else
      # ignore NotFound errors
      OUT2=$(grep -v NotFound "${OUTPUT}")
      if [[ -n ${OUT2} ]];then
        cat "${OUTPUT}"
        exit ${ret}
      fi
    fi
    
    # wait for 30 sec for bookinfo to clean up
    sleep 30
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top