Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Nsec (0.18 sec)

  1. src/net/http/cookie.go

    func (c *Cookie) String() string {
    	if c == nil || !isCookieNameValid(c.Name) {
    		return ""
    	}
    	// extraCookieLength derived from typical length of cookie attributes
    	// see RFC 6265 Sec 4.1.
    	const extraCookieLength = 110
    	var b strings.Builder
    	b.Grow(len(c.Name) + len(c.Value) + len(c.Domain) + len(c.Path) + extraCookieLength)
    	b.WriteString(c.Name)
    	b.WriteRune('=')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. cmd/admin-handlers-site-replication.go

    		atomic.AddUint64(&globalSiteNetPerfRX.RX, uint64(n))
    		if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
    			// If there is a disconnection before globalNetPerfMinDuration (we give a margin of error of 1 sec)
    			// would mean the network is not stable. Logging here will help in debugging network issues.
    			if time.Since(connectTime) < (globalNetPerfMinDuration - time.Second) {
    				adminLogIf(ctx, err)
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    This works similar to <<feature_variants.adoc#sec::declare_feature_variants,defining optional feature variants>> in build scripts.
    We then use one of the `add` methods for adding dependencies to define which dependencies this optional feature needs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. cmd/storage-rest-client.go

    			return info, toStorageErr(err)
    		}
    		info = *infop
    		if info.Error != "" {
    			return info, toStorageErr(errors.New(info.Error))
    		}
    		return info, nil
    	} // In all other cases cache the value upto 1sec.
    
    	client.diskInfoCache.InitOnce(time.Second, cachevalue.Opts{},
    		func(ctx context.Context) (info DiskInfo, err error) {
    			ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
    			defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^NFC_(GENL|PROTO|COMM|RF|SE|DIRECTION|LLCP|SOCKPROTO)_/ ||
    		$2 ~ /^NFC_.*_(MAX)?SIZE$/ ||
    		$2 ~ /^RAW_PAYLOAD_/ ||
    		$2 ~ /^[US]F_/ ||
    		$2 ~ /^TP_STATUS_/ ||
    		$2 ~ /^FALLOC_/ ||
    		$2 ~ /^ICMPV?6?_(FILTER|SEC)/ ||
    		$2 == "SOMAXCONN" ||
    		$2 == "NAME_MAX" ||
    		$2 == "IFNAMSIZ" ||
    		$2 ~ /^CTL_(HW|KERN|MAXNAME|NET|QUERY)$/ ||
    		$2 ~ /^KERN_(HOSTNAME|OS(RELEASE|TYPE)|VERSION)$/ ||
    		$2 ~ /^HW_MACHINE$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. docs/en/data/external_links.yml

    author: Sebastián Ramírez (tiangolo) author_link: https://twitter.com/tiangolo link: https://dev.to/tiangolo/build-a-web-api-from-scratch-with-fastapi-the-workshop-2ehe title: Build a web API from scratch with FastAPI - the workshop - author: Paul Sec author_link: https://twitter.com/PaulWebSec link: https://paulsec.github.io/posts/fastapi_plus_zeit_serverless_fu/ title: FastAPI + Zeit.co = 🚀 - author: cuongld2 author_link: https://dev.to/cuongld2 link: https://dev.to/cuongld2/build-simple-api-...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. cmd/erasure-multipart.go

    	// Therefore, we adjust all ETags sent by the client to match what is stored
    	// on the backend.
    	kind, _ := crypto.IsEncrypted(fi.Metadata)
    
    	var objectEncryptionKey []byte
    	switch kind {
    	case crypto.SSEC:
    		if checksumType.IsSet() {
    			if opts.EncryptFn == nil {
    				return oi, crypto.ErrMissingCustomerKey
    			}
    			baseKey := opts.EncryptFn("", nil)
    			if len(baseKey) != 32 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top